about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOptimisticPeach <optimistic.peach@outlook.com>2019-08-12 00:15:14 -0400
committerGitHub <noreply@github.com>2019-08-12 00:15:14 -0400
commit3d38187afd68f161ef88423cada98edcf1f25d6e (patch)
treed189946789cbd5d911ac87b7da21f14f0a35d058
parent899efd510849d9b947078b19377a379359e46a63 (diff)
downloadrust-3d38187afd68f161ef88423cada98edcf1f25d6e.tar.gz
rust-3d38187afd68f161ef88423cada98edcf1f25d6e.zip
Fixes #63477
Adds a closing parenthesis.
-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.