about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Hamilton <alex.hamilton@ou.edu>2019-01-29 14:34:04 -0600
committerAlex Hamilton <alex.hamilton@ou.edu>2019-01-29 15:33:04 -0600
commit587492b5d243273f7170ee9036ca18bbedbebc77 (patch)
treea4eb6d9199ade6068f4d4f34b2e3fcb753633eb5
parentefaed8e0c0bc67d46a647a0ceb94b4b095ce04db (diff)
downloadrust-587492b5d243273f7170ee9036ca18bbedbebc77.tar.gz
rust-587492b5d243273f7170ee9036ca18bbedbebc77.zip
wildcard_match_arm: add nesting issue to known.
-rw-r--r--clippy_lints/src/matches.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/matches.rs b/clippy_lints/src/matches.rs
index e0094b19998..6ef07316691 100644
--- a/clippy_lints/src/matches.rs
+++ b/clippy_lints/src/matches.rs
@@ -191,7 +191,7 @@ declare_clippy_lint! {
 ///
 /// **Why is this bad?** New enum variants added by library updates can be missed.
 ///
-/// **Known problems:** None.
+/// **Known problems:** Nested wildcards a la `Foo(_)` are currently not detected.
 ///
 /// **Example:**
 /// ```rust