@@ -149,7 +149,7 @@ macro_rules! assert_ne {
149
149
/// `debug_assert!` statements unless `-C debug-assertions` is passed to the
150
150
/// compiler. This makes `debug_assert!` useful for checks that are too
151
151
/// expensive to be present in a release build but may be helpful during
152
- /// development. `debug_assert!` statements are always type checked.
152
+ /// development. The result of expanding `debug_assert!` is always type checked.
153
153
///
154
154
/// An unchecked assertion allows a program in an inconsistent state to keep
155
155
/// running, which might have unexpected consequences but does not introduce
@@ -194,7 +194,7 @@ macro_rules! debug_assert {
194
194
/// `debug_assert_eq!` statements unless `-C debug-assertions` is passed to the
195
195
/// compiler. This makes `debug_assert_eq!` useful for checks that are too
196
196
/// expensive to be present in a release build but may be helpful during
197
- /// development. `debug_assert_eq!` statements are always type checked.
197
+ /// development. The result of expanding `debug_assert_eq!` is always type checked.
198
198
///
199
199
/// [`assert_eq!`]: ../std/macro.assert_eq.html
200
200
///
@@ -221,7 +221,7 @@ macro_rules! debug_assert_eq {
221
221
/// `debug_assert_ne!` statements unless `-C debug-assertions` is passed to the
222
222
/// compiler. This makes `debug_assert_ne!` useful for checks that are too
223
223
/// expensive to be present in a release build but may be helpful during
224
- /// development. `debug_assert_ne!` statements are always type checked.
224
+ /// development. The result of expanding `debug_assert_ne!` is always type checked.
225
225
///
226
226
/// [`assert_ne!`]: ../std/macro.assert_ne.html
227
227
///
0 commit comments