about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2013-05-19 15:31:19 -0700
committerSteve Klabnik <steve@steveklabnik.com>2013-05-19 15:31:19 -0700
commit58777272857526eb301bfedd909e6826e5edf716 (patch)
tree6f65bbe03280ba7da646d0a16e26ceb5d4e07e27 /src
parent929050de73c1edb22211fa05e891068fe9a1a0d2 (diff)
Fix trailing whitespace
Diffstat (limited to 'src')
-rw-r--r--src/libcore/io.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/io.rs b/src/libcore/io.rs
index feceb9f4b17..2060964173d 100644
--- a/src/libcore/io.rs
+++ b/src/libcore/io.rs
@@ -1587,7 +1587,7 @@ pub fn stderr() -> @Writer { fd_writer(libc::STDERR_FILENO as c_int, false) }
 
 /**
 * Prints a string to standard output.
-* 
+*
 * This string will not have an implicit newline at the end. If you want
 * an implicit newline, please see `println`.
 *
@@ -1603,7 +1603,7 @@ pub fn print(s: &str) {
 
 /**
 * Prints a string to standard output, followed by a newline.
-* 
+*
 * If you do not want an implicit newline, please see `print`.
 *
 * # Examples