match_wildcard_for_single_variants: remove empty line at start of lint example.

See https://rust-lang.github.io/rust-clippy/master/index.html#match_wildcard_for_single_variants

changelog: none
This commit is contained in:
Matthias Krüger 2020-06-04 03:34:22 +02:00
parent e2fdeecc22
commit 7654125d27

View file

@ -270,7 +270,6 @@ declare_clippy_lint! {
/// ```rust
/// # enum Foo { A, B, C }
/// # let x = Foo::B;
///
/// // Bad
/// match x {
/// Foo::A => {},