about summary refs log tree commit diff
path: root/clippy_dev/src
diff options
context:
space:
mode:
authorAndre Bogus <bogusandre@gmail.com>2019-10-02 17:19:30 +0200
committerAndre Bogus <bogusandre@gmail.com>2019-10-02 21:15:28 +0200
commite3f143ff0abfb10ffdcd53e1dba27322e76dc1f6 (patch)
tree354980bdfdf40a950527ee4edbe52645e39be267 /clippy_dev/src
parent737f0a6bb508706b75e21194e3010aa3865e779a (diff)
downloadrust-e3f143ff0abfb10ffdcd53e1dba27322e76dc1f6.tar.gz
rust-e3f143ff0abfb10ffdcd53e1dba27322e76dc1f6.zip
account for doc visibility
Diffstat (limited to 'clippy_dev/src')
-rw-r--r--clippy_dev/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_dev/src/lib.rs b/clippy_dev/src/lib.rs
index b53a5579971..7df7109c75f 100644
--- a/clippy_dev/src/lib.rs
+++ b/clippy_dev/src/lib.rs
@@ -57,7 +57,7 @@ impl Lint {
         lints.filter(|l| l.deprecation.is_none() && !l.is_internal())
     }
 
-    /// Returns the lints in a HashMap, grouped by the different lint groups
+    /// Returns the lints in a `HashMap`, grouped by the different lint groups
     pub fn by_lint_group(lints: &[Self]) -> HashMap<String, Vec<Self>> {
         lints
             .iter()