File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 115
115
#![ cfg_attr( docsrs, feature( doc_auto_cfg) ) ]
116
116
117
117
#[ cfg( feature = "const_assert" ) ]
118
- /// Places the expression or body in an inline `const` block if the `const_assert` feature flag is enabled, otherwise does nothing.
118
+ /// Places the expression or block in an inline `const` block if the `const_assert` feature flag is enabled, otherwise does nothing.
119
119
///
120
120
/// Since the stability of inline const is checked early in compilation,
121
121
/// before it can be `#[cfg]`ed away, Rust versions before 1.79.0 could not compile the following code:
@@ -135,7 +135,7 @@ macro_rules! feature_gated_inline_const {
135
135
} ;
136
136
}
137
137
#[ cfg( not( feature = "const_assert" ) ) ]
138
- /// Places the expression or body in an inline `const` block if the `const_assert` feature flag is enabled, otherwise does nothing.
138
+ /// Places the expression or block in an inline `const` block if the `const_assert` feature flag is enabled, otherwise does nothing.
139
139
///
140
140
/// Since the stability of inline const is checked early in compilation,
141
141
/// before it can be `#[cfg]`ed away, Rust versions before 1.79.0 could not compile the following code:
You can’t perform that action at this time.
0 commit comments