doc: line these comments up

Looks more nice, and same is done with prior examples
This commit is contained in:
Tshepang Lekhonkhobe 2016-05-12 23:25:33 +02:00
parent e88defe718
commit a181d2fad4

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"
//! ```
//!