Rollup merge of #131850 - lexeyOK:master, r=compiler-errors

Missing parenthesis

the line was missing closing parenthesis
This commit is contained in:
Matthias Krüger 2024-10-18 06:59:07 +02:00 committed by GitHub
commit b25d266bef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1550,7 +1550,7 @@ macro_rules! include {
/// 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]