about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChristian Nielsen <Urcra@users.noreply.github.com>2020-10-29 15:49:42 +0100
committerGitHub <noreply@github.com>2020-10-29 15:49:42 +0100
commite3de544c22feb01437a060e88249652c103cb612 (patch)
tree5a868fbbceda42915b2b507f2b939841d0a3f468
parent45aa3ef8dde9741c82bd3c98405d0b0464a8b79f (diff)
downloadrust-e3de544c22feb01437a060e88249652c103cb612.tar.gz
rust-e3de544c22feb01437a060e88249652c103cb612.zip
Remove empty lines in doc comment
Co-authored-by: Philipp Krones <hello@philkrones.com>
-rw-r--r--clippy_lints/src/len_zero.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/clippy_lints/src/len_zero.rs b/clippy_lints/src/len_zero.rs
index d0e7dea4a54..8e2f03d6e4e 100644
--- a/clippy_lints/src/len_zero.rs
+++ b/clippy_lints/src/len_zero.rs
@@ -85,7 +85,7 @@ declare_clippy_lint! {
     /// if s == "" {
     ///     ..
     /// }
-
+    ///
     /// if arr == [] {
     ///     ..
     /// }
@@ -95,7 +95,7 @@ declare_clippy_lint! {
     /// if s.is_empty() {
     ///     ..
     /// }
-
+    ///
     /// if arr.is_empty() {
     ///     ..
     /// }