diff options
| author | Colin Arnott <colin@urandom.co.uk> | 2019-07-13 01:34:00 +0000 |
|---|---|---|
| committer | Colin Arnott <colin@urandom.co.uk> | 2019-07-13 01:50:45 +0000 |
| commit | e8e13f04b2218fbc5faa9774a1b5bba9296f3389 (patch) | |
| tree | ca6c30659277b86eedf374792cc1caa62d60ee00 | |
| parent | 71f9384e3bec467158a628e2d11e77ffada16a90 (diff) | |
| download | rust-e8e13f04b2218fbc5faa9774a1b5bba9296f3389.tar.gz rust-e8e13f04b2218fbc5faa9774a1b5bba9296f3389.zip | |
simplify std::io::Write::write rustdoc
The std::io::Write::write method currensly suggests consumers guaranteed that `0 <= n <= buf.len()`, for `Ok(n)`, however `n` is of type `usize` causing the compiler to emit a warning: ``` warning: comparison is useless due to type limits --> lib.rs:6:18 | 6 | Ok(n) => 0 <= n && n <= output.len(), | ^^^^^^ | = note: #[warn(unused_comparisons)] on by default ``` This PR removes the suggestion to check `0 <= n` since it is moot. r? @steveklabnik
| -rw-r--r-- | src/libstd/io/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs index a8d4d1181aa..ebe68dba6e6 100644 --- a/src/libstd/io/mod.rs +++ b/src/libstd/io/mod.rs @@ -1105,7 +1105,7 @@ pub trait Write { /// an [`Err`] variant. /// /// If the return value is [`Ok(n)`] then it must be guaranteed that - /// `0 <= n <= buf.len()`. A return value of `0` typically means that the + /// `n <= buf.len()`. A return value of `0` typically means that the /// underlying object is no longer able to accept bytes and will likely not /// be able to in the future as well, or that the buffer provided is empty. /// |
