Skip to content

Commit

Permalink
Don't run examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Serial-ATA committed Oct 12, 2021
1 parent 9e0ce14 commit 99bfee7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clippy_lints/src/match_str_case_mismatch.rs
Expand Up @@ -18,15 +18,15 @@ declare_clippy_lint! {
/// The arm is unreachable, which is likely a mistake
///
/// ### Example
/// ```rust
/// ```rust,no_run
/// match &*text.to_ascii_lowercase() {
/// "foo" => {},
/// "Bar" => {},
/// _ => {},
/// }
/// ```
/// Use instead:
/// ```rust
/// ```rust,no_run
/// match &*text.to_ascii_lowercase() {
/// "foo" => {},
/// "bar" => {},
Expand Down

0 comments on commit 99bfee7

Please sign in to comment.