Rollup merge of #25139 - hibariya:fix-indentation, r=alexcrichton
This commit is contained in:
commit
888c12ccbb
1 changed files with 2 additions and 2 deletions
|
|
@ -73,13 +73,13 @@ individual bytes, or as codepoints:
|
|||
let hachiko = "忠犬ハチ公";
|
||||
|
||||
for b in hachiko.as_bytes() {
|
||||
print!("{}, ", b);
|
||||
print!("{}, ", b);
|
||||
}
|
||||
|
||||
println!("");
|
||||
|
||||
for c in hachiko.chars() {
|
||||
print!("{}, ", c);
|
||||
print!("{}, ", c);
|
||||
}
|
||||
|
||||
println!("");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue