-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve Read::read_exact documentation #74486
Improve Read::read_exact documentation #74486
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
r=me with @jyn514's nit fixed |
@Mark-Simulacrum Done, I checked it locally to ensure the pointed method stayed the same, CI should confirm the whole thing compiles too :) |
@bors r=Mark-Simulacrum rollup=always |
📌 Commit e88220f has been approved by |
…arth Rollup of 4 pull requests Successful merges: - rust-lang#74333 (Deny unsafe operations in unsafe functions in libstd/alloc.rs) - rust-lang#74356 (Remove combine function) - rust-lang#74419 (Add a thumbv4t-none-eabi target) - rust-lang#74485 (More intra-doc links, add explicit exception list to linkchecker) Failed merges: - rust-lang#74486 (Improve Read::read_exact documentation) r? @ghost
☔ The latest upstream changes (presumably #74518) made this pull request unmergeable. Please resolve the merge conflicts. |
@bors r=Mark-Simulacrum rollup=always |
📌 Commit 471dd52 has been approved by |
…arth Rollup of 9 pull requests Successful merges: - rust-lang#73618 (Documentation for the false keyword) - rust-lang#74486 (Improve Read::read_exact documentation) - rust-lang#74514 (Do not clobber RUSTDOCFLAGS) - rust-lang#74516 (do not try fetching the ancestors of errored trait impls) - rust-lang#74520 (include backtrace folder in rust-src component) - rust-lang#74523 (Improve documentation for `core::fmt` internals) - rust-lang#74527 (Add myself to toolstate change notifications for rustfmt) - rust-lang#74534 (Only skip impls of foreign unstable traits) - rust-lang#74536 (fix documentation surrounding the `in` and `for` keywords) Failed merges: r? @ghost
Fixes #72186.
For now I simply added a link to
Read::read
and held off changing the text inRead::read_exact
. I can do it if it is deemed necessary.@rustbot modify labels: C-enhancement, T-libs