Skip to content

Commit ecde201

Browse files
author
Sylvain Desodt
committed
Fix version declared for semicolon_inside_block and semicolon_outside_block
As per Issue #10244, the lint were documentated as being part of 1.66.0 but will actually be released 1.68.0 .
1 parent 96c28d1 commit ecde201

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clippy_lints/src/semicolon_block.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ declare_clippy_lint! {
3030
/// # let x = 0;
3131
/// unsafe { f(x); }
3232
/// ```
33-
#[clippy::version = "1.66.0"]
33+
#[clippy::version = "1.68.0"]
3434
pub SEMICOLON_INSIDE_BLOCK,
3535
restriction,
3636
"add a semicolon inside the block"
@@ -59,7 +59,7 @@ declare_clippy_lint! {
5959
/// # let x = 0;
6060
/// unsafe { f(x) };
6161
/// ```
62-
#[clippy::version = "1.66.0"]
62+
#[clippy::version = "1.68.0"]
6363
pub SEMICOLON_OUTSIDE_BLOCK,
6464
restriction,
6565
"add a semicolon outside the block"

0 commit comments

Comments
 (0)