Explorar o código

Update packages/hooks/src/use_effect.rs

Co-authored-by: Marc Espín <mespinsanz@gmail.com>
ealmloff hai 1 ano
pai
achega
7a459e15d8
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      packages/hooks/src/use_effect.rs

+ 1 - 1
packages/hooks/src/use_effect.rs

@@ -44,7 +44,7 @@ use crate::UseFutureDep;
 ///         async move {
 ///             let user = fetch_user(id).await;
 ///             name.set(user.name);
-///             move || println!("Cleaning up from {}", id);
+///             move || println!("Cleaning up from {}", id)
 ///         }
 ///     });
 ///