From 3d38187afd68f161ef88423cada98edcf1f25d6e Mon Sep 17 00:00:00 2001 From: OptimisticPeach Date: Mon, 12 Aug 2019 00:15:14 -0400 Subject: [PATCH] Fixes #63477 Adds a closing parenthesis. --- src/libstd/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs index 839b4c5656a09..f2000936b9a21 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.