From db879642bca224b2b4aab586c5ef841b6a1339cb Mon Sep 17 00:00:00 2001 From: timofey Date: Sat, 15 Apr 2023 12:35:19 +0000 Subject: [PATCH] remove extra space --- src/func.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/func.rs b/src/func.rs index 0be33e1..8c8e20b 100644 --- a/src/func.rs +++ b/src/func.rs @@ -7,7 +7,7 @@ pub mod test_suite; pub mod tests; pub trait WeakFunctor { - type F<'a, A: 'a> : 'a; + type F<'a, A: 'a>: 'a; } /// Rust-specific implementation of [Functor], respecting `move` semantics.