Browse Source

fix: Update use_coroutine example (#1237)

Marc Espín 1 year ago
parent
commit
fad3272afb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/hooks/src/usecoroutine.rs

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

@@ -46,7 +46,7 @@ use std::future::Future;
 ///     Stop,
 ///     Stop,
 /// }
 /// }
 ///
 ///
-/// let chat_client = use_coroutine(cx, |rx: UnboundedReceiver<Action>| async move {
+/// let chat_client = use_coroutine(cx, |mut rx: UnboundedReceiver<Action>| async move {
 ///     while let Some(action) = rx.next().await {
 ///     while let Some(action) = rx.next().await {
 ///         match action {
 ///         match action {
 ///             Action::Start => {}
 ///             Action::Start => {}