From 349afcfa74b46837d77d30fa373bb46d91d3b554 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Sun, 3 Aug 2014 21:08:49 +0200 Subject: [PATCH] doc: make the sentence make more sense --- src/libstd/io/stdio.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/io/stdio.rs b/src/libstd/io/stdio.rs index 45c084b345961..5e1831f494c7a 100644 --- a/src/libstd/io/stdio.rs +++ b/src/libstd/io/stdio.rs @@ -235,7 +235,7 @@ pub fn print(s: &str) { with_task_stdout(|io| io.write(s.as_bytes())) } -/// Prints a string as a line. to the stdout of the current process. A literal +/// Prints a string to the stdout of the current process. A literal /// `\n` character is printed to the console after the string. pub fn println(s: &str) { with_task_stdout(|io| {