Skip to content

Commit b9d62fc

Browse files
authored
Merge pull request rust-lang#8 from tmiasko/master
s/Send/Sync/
2 parents 46f7667 + 4fcca4c commit b9d62fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ fn assert_future<A, B, F>(t: F) -> F
613613
t
614614
}
615615

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

0 commit comments

Comments
 (0)