From 1772ca5186d0d10fd12a3a3ebb73f0e93321f6b3 Mon Sep 17 00:00:00 2001 From: timofey Date: Fri, 26 May 2023 10:07:01 +0000 Subject: [PATCH] `Wrap` via `WeakFunctorA` --- src/func.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/func.rs b/src/func.rs index d47356d..840dac6 100644 --- a/src/func.rs +++ b/src/func.rs @@ -49,7 +49,7 @@ impl<'a, T: ?Sized + 'a + WeakFunctor> WeakFunctorA<'a> for T { type Fa = T::F<'a, A>; } -pub type Wrap<'a, A, T> = ::F<'a, A>; +pub type Wrap<'a, A, T> = >::Fa; /// Rust-specific implementation of [`Functor`], respecting `move` semantics. ///