diff options
| author | Hika Hibariya <hibariya@gmail.com> | 2015-05-06 09:45:30 +0900 |
|---|---|---|
| committer | Hika Hibariya <hibariya@gmail.com> | 2015-05-06 09:45:30 +0900 |
| commit | 705f355e534807da5ea48f28dde5f7ad855a4dd7 (patch) | |
| tree | 02f747a6956b5da980e3902d22a2d78eef7e8e68 | |
| parent | eae692e375cec222803efb7175c79fedc228eea9 (diff) | |
| download | rust-705f355e534807da5ea48f28dde5f7ad855a4dd7.tar.gz rust-705f355e534807da5ea48f28dde5f7ad855a4dd7.zip | |
Fix indentation in the "Strings" chapter
| -rw-r--r-- | src/doc/trpl/strings.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/trpl/strings.md b/src/doc/trpl/strings.md index 6ed4c7cb1b3..61a6ec3eb3f 100644 --- a/src/doc/trpl/strings.md +++ b/src/doc/trpl/strings.md @@ -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!(""); |
