Skip to content

Commit

Permalink
Removed outdated documentation
Browse files Browse the repository at this point in the history
`spawn_future()` doesn't exist anymore, so this commit removed a reference to it from the documentation. This closes #234
  • Loading branch information
kmaork committed Aug 23, 2020
1 parent 09428ec commit 998f134
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions rayon-core/src/spawn/mod.rs
Expand Up @@ -21,8 +21,7 @@ use std::sync::Arc;
///
/// This API assumes that the closure is executed purely for its
/// side-effects (i.e., it might send messages, modify data protected
/// by a mutex, or some such thing). If you want to compute a result,
/// consider `spawn_future()`.
/// by a mutex, or some such thing).
///
/// There is no guaranteed order of execution for spawns, given that
/// other threads may steal tasks at any time. However, they are
Expand Down

0 comments on commit 998f134

Please sign in to comment.