diff options
| author | Denis Andrejew <da.colonel@gmail.com> | 2017-05-18 08:45:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-18 08:45:18 +0200 |
| commit | f4e33a011ecbd4744c0a2c594ad69fd1a52bd9c5 (patch) | |
| tree | 6da6bae33ebf8078d5127a57b593eebf2aee08f8 /src/libstd/sync | |
| parent | 6af8c6c7d1173f68addbf51560e6a009b30c9a93 (diff) | |
| download | rust-f4e33a011ecbd4744c0a2c594ad69fd1a52bd9c5.tar.gz rust-f4e33a011ecbd4744c0a2c594ad69fd1a52bd9c5.zip | |
fix typo in libstd/sync/mpsc/mod.rs docs
Diffstat (limited to 'src/libstd/sync')
| -rw-r--r-- | src/libstd/sync/mpsc/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/mpsc/mod.rs b/src/libstd/sync/mpsc/mod.rs index 2cb649ce67b..284a5fbd9d5 100644 --- a/src/libstd/sync/mpsc/mod.rs +++ b/src/libstd/sync/mpsc/mod.rs @@ -1067,7 +1067,7 @@ impl<T> Receiver<T> { Receiver { inner: UnsafeCell::new(inner) } } - /// Attempts to return a pending value on this receiver without blocking + /// Attempts to return a pending value on this receiver without blocking. /// /// This method will never block the caller in order to wait for data to /// become available. Instead, this will always return immediately with a |
