about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--clippy_lints/src/methods/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/methods/mod.rs b/clippy_lints/src/methods/mod.rs
index b7580b37279..16a83604c21 100644
--- a/clippy_lints/src/methods/mod.rs
+++ b/clippy_lints/src/methods/mod.rs
@@ -359,7 +359,7 @@ declare_clippy_lint! {
     /// **Why is this bad?** The function will always be called.
     ///
     /// **Known problems:** If the function has side-effects, not calling it will
-    /// change the semantic of the program, but you shouldn't rely on that anyway.
+    /// change the semantics of the program, but you shouldn't rely on that anyway.
     ///
     /// **Example:**
     /// ```rust