mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-27 15:11:30 +00:00
Fix MANY_SINGLE_CHAR_NAMES
's docs
This commit is contained in:
parent
b14114f253
commit
3447bfccd9
1 changed files with 5 additions and 1 deletions
|
@ -25,7 +25,11 @@ declare_lint! {
|
|||
///
|
||||
/// **Known problems:** None?
|
||||
///
|
||||
/// **Example:** let (a, b, c, d, e, f, g) = (...);
|
||||
/// **Example:**
|
||||
///
|
||||
/// ```rust
|
||||
/// let (a, b, c, d, e, f, g) = (...);
|
||||
/// ```
|
||||
declare_lint! {
|
||||
pub MANY_SINGLE_CHAR_NAMES,
|
||||
Warn,
|
||||
|
|
Loading…
Reference in a new issue