Skip to content

Commit

Permalink
Merge pull request rust-lang#8 from tmiasko/master
Browse files Browse the repository at this point in the history
s/Send/Sync/
  • Loading branch information
alexcrichton authored Jul 18, 2016
2 parents 46f7667 + 4fcca4c commit b9d62fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ fn assert_future<A, B, F>(t: F) -> F
t
}

/// A trait essentially representing `Fn(&Tokens) + Send + Send + 'static`.
/// A trait essentially representing `Fn(&Tokens) + Send + Sync + 'static`.
///
/// This is used as an argument to the `Future::schedule` function.
pub trait Wake: Send + Sync + 'static {
Expand Down

0 comments on commit b9d62fc

Please sign in to comment.