about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-08-12 10:58:24 +0200
committerGitHub <noreply@github.com>2019-08-12 10:58:24 +0200
commit9d297190c853065211c6102bcb46a8b7b9f42898 (patch)
tree3c06e18f7a033f6c6121d4553f6811b33287cae1 /src/libstd
parent7bdff66d353ac6395dc0611f2afc80ffe8b1bf0c (diff)
parent3d38187afd68f161ef88423cada98edcf1f25d6e (diff)
Rollup merge of #63480 - OptimisticPeach:patch-1, r=Centril
Fixes #63477

Adds a closing parenthesis.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs
index 839b4c5656a..f2000936b9a 100644
--- a/src/libstd/macros.rs
+++ b/src/libstd/macros.rs
@@ -119,7 +119,7 @@ macro_rules! print {
 /// Prints to the standard output, with a newline.
 ///
 /// On all platforms, the newline is the LINE FEED character (`\n`/`U+000A`) alone
-/// (no additional CARRIAGE RETURN (`\r`/`U+000D`).
+/// (no additional CARRIAGE RETURN (`\r`/`U+000D`)).
 ///
 /// Use the [`format!`] syntax to write data to the standard output.
 /// See [`std::fmt`] for more information.