We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents af5940b + c4e3ae4 commit e29d550Copy full SHA for e29d550
clippy_lints/src/bit_mask.rs
@@ -87,7 +87,7 @@ declare_clippy_lint! {
87
/// **Example:**
88
/// ```rust
89
/// # let x = 1;
90
- /// if x & 0x1111 == 0 { }
+ /// if x & 0b1111 == 0 { }
91
/// ```
92
pub VERBOSE_BIT_MASK,
93
style,
0 commit comments