-
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
Document format_args! / Arguments<'a> behavior wrt. Display and Debug #49229
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this looks good to me, thanks! travis is failing due to the trailing whitespace though. r=me once it's green
src/libcore/fmt/mod.rs
Outdated
/// | ||
/// struct Arm<'a, L: 'a, R: 'a>(&'a (L, R)); | ||
/// struct Table<'a, K: 'a, V: 'a>(&'a [(K, V)], V); | ||
/// |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you've got trailing whitespace here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How embarrassing; should have run tidy ^,- I'll fix this sometime tonight =)
@bors: r+ rollup |
📌 Commit 613fb8b has been approved by |
…ug, r=steveklabnik Document format_args! / Arguments<'a> behavior wrt. Display and Debug This is a follow up PR to rust-lang#49067 , this documents the behavior of `format_args!` (i.e: `Argument<'a>`) wrt. `Display` and `Debug`.
…ug, r=steveklabnik Document format_args! / Arguments<'a> behavior wrt. Display and Debug This is a follow up PR to rust-lang#49067 , this documents the behavior of `format_args!` (i.e: `Argument<'a>`) wrt. `Display` and `Debug`. r? @steveklabnik
This is a follow up PR to #49067 , this documents the behavior of
format_args!
(i.e:Argument<'a>
) wrt.Display
andDebug
.r? @steveklabnik