Fix `MANY_SINGLE_CHAR_NAMES`'s docs

This commit is contained in:
mcarton 2016-07-14 17:42:40 +02:00
parent b14114f253
commit 3447bfccd9
No known key found for this signature in database
GPG Key ID: 5E427C794CBA45E8
1 changed files with 5 additions and 1 deletions

View File

@ -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,