### What needs to be fixed? <!-- Tell us what content is causing the issue and *how* it is causing the issue. For example, "The code sample was confusing because it used advanced Rust features", or "The call to action on the community page was vague". --> One of the code samples is written as ```rust // You can pad numbers with extra zeroes. This will output "000001". println!("{number:>0width$}", number=1, width=6); ``` This won't actually pad the string with zeroes, it'll actually output " 1". ### Page(s) Affected <!-- Please list the page or pages this bug is present on. Please file one issue for each bug you find. Only file an issue for a multi-page bug if the bug is indeed the *same* bug, across the pages. --> https://doc.rust-lang.org/stable/rust-by-example/hello/print.html ### Suggested Improvement <!-- (optional) Do you have a suggestion for how to fix the problem? Include your ideas here. --> Update the code snippet to ```rust // You can pad numbers with extra zeroes. This will output "000001". println!("{number:0>width$}", number=1, width=6); ```