Skip to content

Commit

Permalink
auto merge of rust-lang#16220 : tshepang/rust/temp, r=steveklabnik
Browse files Browse the repository at this point in the history
  • Loading branch information
bors committed Aug 7, 2014
2 parents e9c5c4c + 349afcf commit 1a53c00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/io/stdio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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| {
Expand Down

0 comments on commit 1a53c00

Please sign in to comment.