about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-10-18 06:59:07 +0200
committerGitHub <noreply@github.com>2024-10-18 06:59:07 +0200
commitb25d266bef6190429704a1a545da63e2d9e650f7 (patch)
tree4a56e6cdaf85dc108e568102e840213b5a82fd10
parent4e9901faa9d9fc83b51cb4838d7bf1232cb632b4 (diff)
parent4ab307f9e81e863f7f7946fd5f1183cd1b5cea22 (diff)
downloadrust-b25d266bef6190429704a1a545da63e2d9e650f7.tar.gz
rust-b25d266bef6190429704a1a545da63e2d9e650f7.zip
Rollup merge of #131850 - lexeyOK:master, r=compiler-errors
Missing parenthesis

the line was missing closing parenthesis
-rw-r--r--library/core/src/macros/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/macros/mod.rs b/library/core/src/macros/mod.rs
index 6a4f2af10ef..771c2d31b60 100644
--- a/library/core/src/macros/mod.rs
+++ b/library/core/src/macros/mod.rs
@@ -1550,7 +1550,7 @@ pub(crate) mod builtin {
     /// MODE is any of Forward, Reverse, ForwardFirst, ReverseFirst.
     /// INPUT_ACTIVITIES consists of one valid activity for each input parameter.
     /// OUTPUT_ACTIVITY must not be set if we implicitely return nothing (or explicitely return
-    /// `-> ()`. Otherwise it must be set to one of the allowed activities.
+    /// `-> ()`). Otherwise it must be set to one of the allowed activities.
     #[unstable(feature = "autodiff", issue = "124509")]
     #[allow_internal_unstable(rustc_attrs)]
     #[rustc_builtin_macro]