diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2021-09-22 20:20:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-22 20:20:33 +0200 |
| commit | 598e5b27beef291c016c13f4dfaf724350f37fce (patch) | |
| tree | 75b9ddd237eab9c9c06728f1f65711bbdafd9f3a | |
| parent | f63096e4f2a08e80eaa4d564946d4fa4d363fc44 (diff) | |
| download | rust-598e5b27beef291c016c13f4dfaf724350f37fce.tar.gz rust-598e5b27beef291c016c13f4dfaf724350f37fce.zip | |
Update library/std/src/sync/mpsc/shared.rs
| -rw-r--r-- | library/std/src/sync/mpsc/shared.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sync/mpsc/shared.rs b/library/std/src/sync/mpsc/shared.rs index 619a79f437b..8487a5f8b50 100644 --- a/library/std/src/sync/mpsc/shared.rs +++ b/library/std/src/sync/mpsc/shared.rs @@ -251,7 +251,7 @@ impl<T> Packet<T> { assert_eq!( self.to_wake.load(Ordering::SeqCst), 0, - "This is a known bug in rust. See https://github.com/rust-lang/rust/issues/39364" + "This is a known bug in the Rust standard library. See https://github.com/rust-lang/rust/issues/39364" ); let ptr = token.cast_to_usize(); self.to_wake.store(ptr, Ordering::SeqCst); |
