Skip to content

Commit f726d8e

Browse files
committed
Update mod.rs
1 parent 8ee4836 commit f726d8e

File tree

1 file changed

+1
-1
lines changed
  • clippy_lints/src/methods

1 file changed

+1
-1
lines changed

clippy_lints/src/methods/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3308,7 +3308,7 @@ declare_clippy_lint! {
33083308
/// let _ = 32u32.pow(n);
33093309
/// ```
33103310
/// Use instead:
3311-
/// ```rust
3311+
/// ```rust,ignore
33123312
/// let _ = 1u32 << n;
33133313
/// let _ = 1u32 << (n * 5);
33143314
/// ```

0 commit comments

Comments
 (0)