Skip to content

Commit b2959db

Browse files
committed
Auto merge of rust-lang#8706 - lupd:cast-abs-to-unsigned, r=xFrednet
Fix formatting of `cast_abs_to_unsigned` docs The "use instead" section of the example was not being formatted as Rust code, and the "configuration" documentation was being formatted as Rust code. changelog: `[cast_abs_to_unsigned]` Fix example/configuration formatting
2 parents 3abd2c0 + d1a78f3 commit b2959db

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

clippy_lints/src/casts/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -487,6 +487,7 @@ declare_clippy_lint! {
487487
/// let y: u32 = x.abs() as u32;
488488
/// ```
489489
/// Use instead:
490+
/// ```rust
490491
/// let x: i32 = -42;
491492
/// let y: u32 = x.unsigned_abs();
492493
/// ```

0 commit comments

Comments
 (0)