Skip to content

Commit d3656b4

Browse files
committed
fix broken test
Signed-off-by: Max Baumann <[email protected]>
1 parent 49538ee commit d3656b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clippy_lints/src/strings.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -461,11 +461,11 @@ declare_clippy_lint! {
461461
///
462462
/// ### Example
463463
/// ```rust
464-
/// " A B C ".trim().split_whitespace()
464+
/// " A B C ".trim().split_whitespace();
465465
/// ```
466466
/// Use instead:
467467
/// ```rust
468-
/// " A B C ".split_whitespace()
468+
/// " A B C ".split_whitespace();
469469
/// ```
470470
#[clippy::version = "1.61.0"]
471471
pub TRIM_SPLIT_WHITESPACE,

0 commit comments

Comments
 (0)