-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
std::fmt module documentation error #22646
Comments
I tried to search already reported issue, no luck. |
So, does it qualify for a proper PR? I'm new in Rust ecosystem and I thought it could be a good way to both contribute back and start small, e.g. understand how the whole process works ... ;) Edit s/smart/small/ |
yes, absolutely! If you have the time, that'd be great. |
You can check out https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md for full details, but basically, just make a pull request :) |
Great, will do it some time during this week. |
Removes deprecated `{:08d}` format from the module documentation. `{:08}` should be used instead now.
…veklabnik Addresses rust-lang#22646 Removes deprecated `{:08d}` format from the module documentation. `{:08}` should be used instead now.
#22925 fixed the issue http://doc.rust-lang.org/std/fmt/#sign/#/0 seems to be updated, closing this one. |
See http://doc.rust-lang.org/std/fmt/index.html
e.g. http://doc.rust-lang.org/src/collections/fmt.rs.html#365-369
It seems what instead of
{:08d}
,{:08}
is required.E.g. (http://is.gd/oL48zO)
produces
The text was updated successfully, but these errors were encountered: