diff options
| author | Mark Simulacrum <mark.simulacrum@gmail.com> | 2017-05-19 14:16:21 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-19 14:16:21 -0600 |
| commit | 4c2273a0815f715437b76786a2e9946abce03728 (patch) | |
| tree | 2f31e45dfaccdd21e76a14a59d7fb12fa2f74f85 /src/libstd | |
| parent | 6a2bf05cbc6b872182dbb4db4f72b14d24682547 (diff) | |
| parent | f4e33a011ecbd4744c0a2c594ad69fd1a52bd9c5 (diff) | |
| download | rust-4c2273a0815f715437b76786a2e9946abce03728.tar.gz rust-4c2273a0815f715437b76786a2e9946abce03728.zip | |
Rollup merge of #42079 - seeekr:patch-1, r=steveklabnik
fix typo in libstd/sync/mpsc/mod.rs docs
Diffstat (limited to 'src/libstd')
| -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 |
