Skip to content

Commit 53b0074

Browse files
committed
Update mod.rs
1 parent 84b8fd5 commit 53b0074

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
@@ -3466,7 +3466,7 @@ declare_clippy_lint! {
34663466
/// let _ = 32u32.pow(n);
34673467
/// ```
34683468
/// Use instead:
3469-
/// ```rust
3469+
/// ```rust,ignore
34703470
/// let _ = 1u32 << n;
34713471
/// let _ = 1u32 << (n * 5);
34723472
/// ```

0 commit comments

Comments
 (0)