Fix indentation in the "Strings" chapter

This commit is contained in:
Hika Hibariya 2015-05-06 09:45:30 +09:00
parent eae692e375
commit 705f355e53

View File

@ -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!("");