mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-15 12:39:31 +03:00
Auto merge of #10918 - Centri3:patch-2, r=xFrednet
Fix `excessive_nesting` example
whoops 😅
changelog: none
This commit is contained in:
@@ -24,8 +24,8 @@
|
||||
/// # clippy.toml
|
||||
/// excessive-nesting-threshold = 3
|
||||
/// ```
|
||||
/// lib.rs:
|
||||
/// ```rust,ignore
|
||||
/// // lib.rs
|
||||
/// pub mod a {
|
||||
/// pub struct X;
|
||||
/// impl X {
|
||||
@@ -36,9 +36,10 @@
|
||||
/// }
|
||||
/// }
|
||||
/// }
|
||||
/// ```
|
||||
/// Use instead:
|
||||
/// a.rs:
|
||||
/// ```rust,ignore
|
||||
/// // a.rs
|
||||
/// fn private_run(x: &X) {
|
||||
/// if true {
|
||||
/// // etc...
|
||||
@@ -52,8 +53,8 @@
|
||||
/// }
|
||||
/// }
|
||||
/// ```
|
||||
/// lib.rs:
|
||||
/// ```rust,ignore
|
||||
/// // lib.rs
|
||||
/// pub mod a;
|
||||
/// ```
|
||||
#[clippy::version = "1.70.0"]
|
||||
|
||||
Reference in New Issue
Block a user