Skip to content

Commit c692d75

Browse files
committed
Indent 4 spaces instead of 2
1 parent 80322e2 commit c692d75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/macros.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ macro_rules! println {
138138
/// fn write_to_file_using_match() -> Result<(), io::Error> {
139139
/// let mut file = try!(File::create("my_best_friends.txt"));
140140
/// match file.write_all(b"This is a list of my best friends.") {
141-
/// Ok(_) => (),
142-
/// Err(e) => return Err(e),
141+
/// Ok(_) => (),
142+
/// Err(e) => return Err(e),
143143
/// }
144144
/// println!("I wrote to the file");
145145
/// Ok(())

0 commit comments

Comments
 (0)