about summary refs log tree commit diff
diff options
context:
space:
mode:
authortamaron <tamaron1203@gmail.com>2022-06-30 11:59:23 +0900
committertamaron <tamaron1203@gmail.com>2022-06-30 11:59:23 +0900
commit5d75a9bd4c4ec2d6c80be2d91edea57c7f0871b6 (patch)
tree83e74f055bf106cc1b917ac60843d036315a4f30
parent70f1d0d8fd702d8d761ce5c15df5b238ab59c250 (diff)
downloadrust-5d75a9bd4c4ec2d6c80be2d91edea57c7f0871b6.tar.gz
rust-5d75a9bd4c4ec2d6c80be2d91edea57c7f0871b6.zip
fix
-rw-r--r--clippy_lints/src/matches/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/matches/mod.rs b/clippy_lints/src/matches/mod.rs
index d43ad1b8c9c..b2a873ef582 100644
--- a/clippy_lints/src/matches/mod.rs
+++ b/clippy_lints/src/matches/mod.rs
@@ -791,7 +791,7 @@ declare_clippy_lint! {
     /// the match block and thus will not unlock.
     ///
     /// ### Example
-    /// ```rust.ignore
+    /// ```rust,ignore
     /// # use std::sync::Mutex;
     ///
     /// # struct State {}