diff options
| author | Andrew Hobden <andrew@hoverbear.org> | 2015-03-29 15:25:06 -0700 |
|---|---|---|
| committer | Andrew Hobden <andrew@hoverbear.org> | 2015-03-29 15:25:06 -0700 |
| commit | d4b5f65afcf20befc554dabf2f8735e5d173b382 (patch) | |
| tree | 56c4b2817d8d0ed3ae62006dc004ae86ecbc71f8 | |
| parent | 1a5e73a82d6a3e27804ac2f37d1f7dca62ecfc02 (diff) | |
| download | rust-d4b5f65afcf20befc554dabf2f8735e5d173b382.tar.gz rust-d4b5f65afcf20befc554dabf2f8735e5d173b382.zip | |
Fix line spacing.
| -rw-r--r-- | src/libcore/error.rs | 5 |
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) } |
