@@ -264,7 +264,7 @@ where
264264 ) -> AssemblyResult < AssemblyIntermediate < ' x , S > >
265265 where
266266 Sub : ReactorInitializer + ' static ,
267- // we can't use impl Fn(...) because we want to specify explicit type parameters in the calle
267+ // we can't use impl Fn(...) because we want to specify explicit type parameters in the calle
268268 F : FnOnce ( Self , & mut Vec < Sub > ) -> AssemblyResult < AssemblyIntermediate < ' x , S > > ,
269269 A : Fn ( /*bank_index:*/ usize ) -> Sub :: Params ,
270270 {
@@ -368,8 +368,8 @@ impl<S: ReactorInitializer> DependencyDeclarator<'_, '_, S> {
368368 #[ inline]
369369 pub fn bind_ports_zip < ' a , T : Sync + ' a > (
370370 & mut self ,
371- upstream : impl Iterator < Item = & ' a mut Port < T > > ,
372- downstream : impl Iterator < Item = & ' a mut Port < T > > ,
371+ upstream : impl Iterator < Item = & ' a mut Port < T > > ,
372+ downstream : impl Iterator < Item = & ' a mut Port < T > > ,
373373 ) -> AssemblyResult < ( ) > {
374374 for ( upstream, downstream) in upstream. zip ( downstream) {
375375 self . bind_ports ( upstream, downstream) ?;
@@ -380,8 +380,8 @@ impl<S: ReactorInitializer> DependencyDeclarator<'_, '_, S> {
380380 #[ inline]
381381 pub fn bind_ports_iterated < ' a , T : Sync + ' a > (
382382 & mut self ,
383- upstream : impl Iterator < Item = & ' a mut Port < T > > ,
384- mut downstream : impl Iterator < Item = & ' a mut Port < T > > ,
383+ upstream : impl Iterator < Item = & ' a mut Port < T > > ,
384+ mut downstream : impl Iterator < Item = & ' a mut Port < T > > ,
385385 ) -> AssemblyResult < ( ) > {
386386 let mut upstream = upstream. collect :: < Vec < _ > > ( ) ;
387387 assert ! ( !upstream. is_empty( ) , "Empty upstream!" ) ;
0 commit comments