Andrey 1 vuosi sitten
vanhempi
commit
1404009edc
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      packages/hooks/src/use_future.rs

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

@@ -13,7 +13,7 @@ use std::future::Future;
 /// The future is spawned on the next call to `flush_sync` which means that it will not run on the server.
 /// To run a future on the server, you should use `spawn` directly.
 /// `use_future` **won't return a value**.
-/// If you want to return a value, use `use_resource` instead.
+/// If you want to return a value from a future, use `use_resource` instead.
 /// ```rust
 /// fn app() -> Element {
 ///     let mut count = use_signal(|| 0);