Rollup merge of #33604 - tshepang:line-em-up, r=GuillaumeGomez

doc: line these comments up

Looks more nice, and same is done with prior examples
This commit is contained in:
Eduard-Mihai Burtescu 2016-05-16 02:00:18 +03:00
commit 9c745e7feb

View File

@ -81,7 +81,7 @@
//!
//! ```
//! format!("{argument}", argument = "test"); // => "test"
//! format!("{name} {}", 1, name = 2); // => "2 1"
//! format!("{name} {}", 1, name = 2); // => "2 1"
//! format!("{a} {c} {b}", a="a", b='b', c=3); // => "a 3 b"
//! ```
//!