Skip to content

Commit 0d584f3

Browse files
committed
Fix one last test issue
1 parent d887503 commit 0d584f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clippy_lints/src/floating_point_arithmetic.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ declare_clippy_lint! {
7676
/// -a
7777
/// } else {
7878
/// a
79-
/// }
79+
/// };
8080
/// let _ = if a < 0.0 {
8181
/// a
8282
/// } else {
8383
/// -a
84-
/// }
84+
/// };
8585
/// ```
8686
///
8787
/// is better expressed as

0 commit comments

Comments
 (0)