-
Notifications
You must be signed in to change notification settings - Fork 13k
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
doc: to_string not needed since we gots coercion #33603
Conversation
r? @aturon (rust_highfive has picked a reviewer for you, use r? to override) |
/// ``` | ||
/// | ||
/// Please note that using [`format!`][format!] might be preferrable. | ||
/// Example: | ||
/// | ||
/// ``` | ||
/// let s = format!("Hello, {}!", "world"); | ||
/// assert_eq!(s, "Hello, world!".to_string()); | ||
/// assert_eq!(s, "Hello, world!"; |
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.
This is now missing a bracket.
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.
oops
@bors: r+ rollup |
📌 Commit 226cb9c has been approved by |
doc: to_string not needed since we gots coercion
doc: to_string not needed since we gots coercion
No description provided.