diff options
| author | Joseph Crail <jbcrail@gmail.com> | 2015-02-04 23:00:02 -0500 |
|---|---|---|
| committer | Joseph Crail <jbcrail@gmail.com> | 2015-02-04 23:00:02 -0500 |
| commit | dc2e444e506c31e8f4a4331c7f6264ca6c107bb6 (patch) | |
| tree | eee7ee05c474531329e04db0cce74ae2d87422fd /src/libstd/sync/mpsc | |
| parent | ba2f13ef0667ce90f55ab0f1506bf5ee7b852d96 (diff) | |
| download | rust-dc2e444e506c31e8f4a4331c7f6264ca6c107bb6.tar.gz rust-dc2e444e506c31e8f4a4331c7f6264ca6c107bb6.zip | |
Fix for misspelled comments.
The spelling corrections were made in both documentation comments and regular comments.
Diffstat (limited to 'src/libstd/sync/mpsc')
| -rw-r--r-- | src/libstd/sync/mpsc/oneshot.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/mpsc/oneshot.rs b/src/libstd/sync/mpsc/oneshot.rs index ca667e65e30..eb45681fa62 100644 --- a/src/libstd/sync/mpsc/oneshot.rs +++ b/src/libstd/sync/mpsc/oneshot.rs @@ -45,7 +45,7 @@ use core::mem; use sync::atomic::{AtomicUsize, Ordering}; // Various states you can find a port in. -const EMPTY: uint = 0; // initial state: no data, no blocked reciever +const EMPTY: uint = 0; // initial state: no data, no blocked receiver const DATA: uint = 1; // data ready for receiver to take const DISCONNECTED: uint = 2; // channel is disconnected OR upgraded // Any other value represents a pointer to a SignalToken value. The |
