Bladeren bron

doc: Fix spawn doc (#3871)

Henry 2 maanden geleden
bovenliggende
commit
2e856ecb3b
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. 1 1
      packages/core/src/global_context.rs

+ 1 - 1
packages/core/src/global_context.rs

@@ -120,7 +120,7 @@ pub fn spawn_isomorphic(fut: impl Future<Output = ()> + 'static) -> Task {
     Runtime::with_current_scope(|cx| cx.spawn_isomorphic(fut)).unwrap()
 }
 
-/// Spawns the future but does not return the [`Task`]. This task will automatically be canceled when the component is dropped.
+/// Spawns the future and returns the [`Task`]. This task will automatically be canceled when the component is dropped.
 ///
 /// # Example
 /// ```rust