diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-10-21 01:39:21 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-21 01:39:21 +0200 |
| commit | 836e45d26bbee9b6a73a32b154c82338102a96a6 (patch) | |
| tree | a1bbbdb76f8c67f283be59432a3aa0f845515551 /src/libstd | |
| parent | 5a29bd9f9b71157116fe2e8199f64abd45a100ad (diff) | |
| parent | e697ffbbcb41559c8de3ca3b94f3b9467e662a19 (diff) | |
| download | rust-836e45d26bbee9b6a73a32b154c82338102a96a6.tar.gz rust-836e45d26bbee9b6a73a32b154c82338102a96a6.zip | |
Rollup merge of #65639 - adrianheine:patch-2, r=jonas-schievink
Fix parameter name in documentation
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/io/stdio.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/io/stdio.rs b/src/libstd/io/stdio.rs index c798ee0e220..6574ef13db9 100644 --- a/src/libstd/io/stdio.rs +++ b/src/libstd/io/stdio.rs @@ -762,7 +762,7 @@ pub fn set_print(sink: Option<Box<dyn Write + Send>>) -> Option<Box<dyn Write + /// otherwise. `label` identifies the stream in a panic message. /// /// This function is used to print error messages, so it takes extra -/// care to avoid causing a panic when `local_stream` is unusable. +/// care to avoid causing a panic when `local_s` is unusable. /// For instance, if the TLS key for the local stream is /// already destroyed, or if the local stream is locked by another /// thread, it will just fall back to the global stream. |
