diff options
| author | Anastasis Georgoulas <a.georgoulas@ucl.ac.uk> | 2024-10-15 22:47:04 +0100 |
|---|---|---|
| committer | Anastasis Georgoulas <a.georgoulas@ucl.ac.uk> | 2024-10-15 22:47:04 +0100 |
| commit | 48636259dfac998c0f34980ef52bebb0ca92a798 (patch) | |
| tree | c85854b4e362f3927689b357cc5e50979ad32f81 | |
| parent | b86a48955e43e269fdbda357ad543a35a2995eb6 (diff) | |
| download | rust-48636259dfac998c0f34980ef52bebb0ca92a798.tar.gz rust-48636259dfac998c0f34980ef52bebb0ca92a798.zip | |
Correct typo in lint description
| -rw-r--r-- | clippy_lints/src/methods/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/methods/mod.rs b/clippy_lints/src/methods/mod.rs index 90f7128d0e8..722290fb68e 100644 --- a/clippy_lints/src/methods/mod.rs +++ b/clippy_lints/src/methods/mod.rs @@ -4046,7 +4046,7 @@ declare_clippy_lint! { /// Checks the usage of `.get().is_some()` or `.get().is_none()` on std map types. /// /// ### Why is this bad? - /// It can be done in one call with `.contains()`/`.contains_keys()`. + /// It can be done in one call with `.contains()`/`.contains_key()`. /// /// ### Example /// ```no_run |
