Skip to content

Commit

Permalink
Merge pull request #1644 from ErickCastle/patch-1
Browse files Browse the repository at this point in the history
Added missing space in comment
  • Loading branch information
marioidival committed Dec 8, 2022
2 parents d4023bd + 4af0c75 commit a4c007c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hello/print.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ fn main() {
println!("{number:>5}", number=1);
// You can pad numbers with extra zeroes,
//and left-adjust by flipping the sign. This will output "10000".
// and left-adjust by flipping the sign. This will output "10000".
println!("{number:0<5}", number=1);
// You can use named arguments in the format specifier by appending a `$`.
Expand Down

0 comments on commit a4c007c

Please sign in to comment.