about summary refs log tree commit diff
path: root/clippy_lints/src/string_patterns.rs
diff options
context:
space:
mode:
authorPhilipp Krones <hello@philkrones.com>2024-09-22 20:41:44 +0200
committerPhilipp Krones <hello@philkrones.com>2024-09-22 20:51:17 +0200
commitd140e26cc0d80ad79e0073acfb1a8770bd7972f0 (patch)
tree60c41883f602f6a662c62cffaea5ef93614456fa /clippy_lints/src/string_patterns.rs
parent249210e8d86a4de347def1be559dfa79d346cb9f (diff)
parentabdf173ef2972033e1b5ac78e1bbc886b7f871c1 (diff)
Merge remote-tracking branch 'upstream/master' into rustup
Diffstat (limited to 'clippy_lints/src/string_patterns.rs')
-rw-r--r--clippy_lints/src/string_patterns.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/string_patterns.rs b/clippy_lints/src/string_patterns.rs
index 7e211d64da1..8af50ca87d6 100644
--- a/clippy_lints/src/string_patterns.rs
+++ b/clippy_lints/src/string_patterns.rs
@@ -33,7 +33,7 @@ declare_clippy_lint! {
     /// ```no_run
     /// "Hello World!".trim_end_matches(['.', ',', '!', '?']);
     /// ```
-    #[clippy::version = "1.80.0"]
+    #[clippy::version = "1.81.0"]
     pub MANUAL_PATTERN_CHAR_COMPARISON,
     style,
     "manual char comparison in string patterns"