Skip to content

Commit

Permalink
Rollup merge of #131850 - lexeyOK:master, r=compiler-errors
Browse files Browse the repository at this point in the history
Missing parenthesis

the line was missing closing parenthesis
  • Loading branch information
matthiaskrgr authored Oct 18, 2024
2 parents 4e9901f + 4ab307f commit b25d266
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/core/src/macros/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit b25d266

Please sign in to comment.