From c8f71dc9d2dc9ea2fc0e4b18255d3e81cf929a99 Mon Sep 17 00:00:00 2001 From: lexx <35109763+lexeyOK@users.noreply.github.com> Date: Fri, 18 Oct 2024 01:04:01 +0500 Subject: [PATCH] Missing parenthesis the line was missing closing parenthesis --- core/src/macros/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/macros/mod.rs b/core/src/macros/mod.rs index 6a4f2af10efc6..771c2d31b60e0 100644 --- a/core/src/macros/mod.rs +++ b/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]