Uh oh!
There was an error while loading. Please reload this page.
Adding eprint*! to the list of macros in the format! family - #46201
Conversation
rust-highfive
commented
Nov 23, 2017
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @withoutboats (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
frewsxcv
commented
Nov 24, 2017
good catch! thanks for your contribution ✨ @bors r+ rollup |
bors
commented
Nov 24, 2017
📌 Commit 2f51f67 has been approved by |
…wsxcv Adding `eprint*!` to the list of macros in the `format!` family The `eprint!` and `eprintln!` macros were added in 7612727. The `std::fmt` documentation does not mention these macros next to `print!` and `println!` in the [Related macros](https://doc.rust-lang.org/std/fmt/#related-macros) section, and I did not find evidence that this omission was deliberate. This PR adds such documentation. The first modification is to add `eprint!` and `eprintln!` to the list of related macros in the `format!` family. This is how it appears with this change:  The second modification adds a sub-section for `eprint!` and `eprintln!`. Here is how the new section appears: 
…wsxcv Adding `eprint*!` to the list of macros in the `format!` family The `eprint!` and `eprintln!` macros were added in 7612727. The `std::fmt` documentation does not mention these macros next to `print!` and `println!` in the [Related macros](https://doc.rust-lang.org/std/fmt/#related-macros) section, and I did not find evidence that this omission was deliberate. This PR adds such documentation. The first modification is to add `eprint!` and `eprintln!` to the list of related macros in the `format!` family. This is how it appears with this change:  The second modification adds a sub-section for `eprint!` and `eprintln!`. Here is how the new section appears: 
The
eprint!andeprintln!macros were added in 7612727. Thestd::fmtdocumentation does not mention these macros next toprint!andprintln!in the Related macros section, and I did not find evidence that this omission was deliberate. This PR adds such documentation.The first modification is to add
eprint!andeprintln!to the list of related macros in theformat!family. This is how it appears with this change:The second modification adds a sub-section for
eprint!andeprintln!. Here is how the new section appears: