Auto merge of #8889 - Serial-ATA:remove-newlines, r=xFrednet

Remove newlines in [`match_str_case_mismatch`] example

changelog: none
This commit is contained in:
bors 2022-05-25 21:59:28 +00:00
commit 45785fe1ee

View file

@ -21,7 +21,6 @@ declare_clippy_lint! {
/// ### Example
/// ```rust
/// # let text = "Foo";
///
/// match &*text.to_ascii_lowercase() {
/// "foo" => {},
/// "Bar" => {},
@ -31,7 +30,6 @@ declare_clippy_lint! {
/// Use instead:
/// ```rust
/// # let text = "Foo";
///
/// match &*text.to_ascii_lowercase() {
/// "foo" => {},
/// "bar" => {},