diff options
| author | lexx <35109763+lexeyOK@users.noreply.github.com> | 2024-10-18 01:04:01 +0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-18 01:04:01 +0500 |
| commit | 4ab307f9e81e863f7f7946fd5f1183cd1b5cea22 (patch) | |
| tree | e9d07cb43b7b6c8177e070ba566a9f7fbf4be2c0 | |
| parent | 86bd45979a964678b40b79156744f0057759d840 (diff) | |
| download | rust-4ab307f9e81e863f7f7946fd5f1183cd1b5cea22.tar.gz rust-4ab307f9e81e863f7f7946fd5f1183cd1b5cea22.zip | |
Missing parenthesis
the line was missing closing parenthesis
| -rw-r--r-- | library/core/src/macros/mod.rs | 2 |
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] |
