Skip to content

Commit e29d550

Browse files
committed
Auto merge of #5454 - spl:patch-1, r=phansch
verbose_bit_mask: fix bit mask used in docs changelog: fixes verbose_bit_mask docs
2 parents af5940b + c4e3ae4 commit e29d550

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_lints/src/bit_mask.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ declare_clippy_lint! {
8787
/// **Example:**
8888
/// ```rust
8989
/// # let x = 1;
90-
/// if x & 0x1111 == 0 { }
90+
/// if x & 0b1111 == 0 { }
9191
/// ```
9292
pub VERBOSE_BIT_MASK,
9393
style,

0 commit comments

Comments
 (0)