Skip to content

Commit 1a53c00

Browse files
committed
auto merge of #16220 : tshepang/rust/temp, r=steveklabnik
2 parents e9c5c4c + 349afcf commit 1a53c00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/io/stdio.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ pub fn print(s: &str) {
235235
with_task_stdout(|io| io.write(s.as_bytes()))
236236
}
237237

238-
/// Prints a string as a line. to the stdout of the current process. A literal
238+
/// Prints a string to the stdout of the current process. A literal
239239
/// `\n` character is printed to the console after the string.
240240
pub fn println(s: &str) {
241241
with_task_stdout(|io| {

0 commit comments

Comments
 (0)