about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Hobden <andrew@hoverbear.org>2015-03-29 15:25:06 -0700
committerAndrew Hobden <andrew@hoverbear.org>2015-03-29 15:25:06 -0700
commitd4b5f65afcf20befc554dabf2f8735e5d173b382 (patch)
tree56c4b2817d8d0ed3ae62006dc004ae86ecbc71f8
parent1a5e73a82d6a3e27804ac2f37d1f7dca62ecfc02 (diff)
downloadrust-d4b5f65afcf20befc554dabf2f8735e5d173b382.tar.gz
rust-d4b5f65afcf20befc554dabf2f8735e5d173b382.zip
Fix line spacing.
-rw-r--r--src/libcore/error.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libcore/error.rs b/src/libcore/error.rs
index 9b78f5a5c61..9430aa00668 100644
--- a/src/libcore/error.rs
+++ b/src/libcore/error.rs
@@ -53,7 +53,10 @@
 //! use std::{io, str};
 //! use std::fs::File;
 //!
-//! enum MyError { Io(io::Error), Utf8(str::Utf8Error), }
+//! enum MyError {
+//!     Io(io::Error),
+//!     Utf8(str::Utf8Error),
+//! }
 //!
 //! impl FromError<io::Error> for MyError {
 //!     fn from_error(err: io::Error) -> MyError { MyError::Io(err) }