From: Christian Nielsen Date: Thu, 29 Oct 2020 14:49:42 +0000 (+0100) Subject: Remove empty lines in doc comment X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=e3de544c22feb01437a060e88249652c103cb612;p=rust.git Remove empty lines in doc comment Co-authored-by: Philipp Krones --- 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 @@ /// if s == "" { /// .. /// } - + /// /// if arr == [] { /// .. /// } @@ -95,7 +95,7 @@ /// if s.is_empty() { /// .. /// } - + /// /// if arr.is_empty() { /// .. /// }