File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ macro_rules! nonzero_leading_trailing_zeros {
213
213
without modifying the original"]
214
214
#[ inline]
215
215
pub const fn leading_zeros( self ) -> u32 {
216
- // SAFETY: since `self` can not be zero it is safe to call ctlz_nonzero
216
+ // SAFETY: since `self` cannot be zero, it is safe to call ` ctlz_nonzero`.
217
217
unsafe { intrinsics:: ctlz_nonzero( self . 0 as $Uint) as u32 }
218
218
}
219
219
@@ -237,7 +237,7 @@ macro_rules! nonzero_leading_trailing_zeros {
237
237
without modifying the original"]
238
238
#[ inline]
239
239
pub const fn trailing_zeros( self ) -> u32 {
240
- // SAFETY: since `self` can not be zero it is safe to call cttz_nonzero
240
+ // SAFETY: since `self` cannot be zero, it is safe to call ` cttz_nonzero`.
241
241
unsafe { intrinsics:: cttz_nonzero( self . 0 as $Uint) as u32 }
242
242
}
243
243
You can’t perform that action at this time.
0 commit comments