Skip to content

Commit ab55d3f

Browse files
authored
Correct version of literal_string_with_formatting_args (#13974)
It claims to be in 1.83 but in fact will not be until 1.85. Evidence: <rust-lang/rust#134788> is where it was merged into rust-lang/rust, and has a milestone of 1.85. changelog: none
2 parents 64250a3 + db4aac6 commit ab55d3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_lints/src/literal_string_with_formatting_args.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ declare_clippy_lint! {
2929
/// let y = "hello";
3030
/// x.expect(&format!("{y:?}"));
3131
/// ```
32-
#[clippy::version = "1.83.0"]
32+
#[clippy::version = "1.85.0"]
3333
pub LITERAL_STRING_WITH_FORMATTING_ARGS,
3434
suspicious,
3535
"Checks if string literals have formatting arguments"

0 commit comments

Comments
 (0)