We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
write!
std::fmt
The std::fmt docs currently say about the write! macro:
Under the hood, this function is actually invoking the write function defined in this module.
write
But in fact, write! is defined as calling the write_fmt method on its argument, as per its documentation.
write_fmt
The text was updated successfully, but these errors were encountered:
Fix documentation for write! on std::fmt page
bbd0040
Fixes rust-lang#36906
Rollup merge of rust-lang#36937 - wesleywiser:patch-3, r=frewsxcv
1d20468
Fix documentation for `write!` on `std::fmt` page Fixes rust-lang#36906
No branches or pull requests
The
std::fmt
docs currently say about thewrite!
macro:But in fact,
write!
is defined as calling thewrite_fmt
method on its argument, as per its documentation.The text was updated successfully, but these errors were encountered: