From b4f2200d5c494bf15777ae97fe6d892c32b57ee7 Mon Sep 17 00:00:00 2001 From: Felix Rabe Date: Thu, 18 Apr 2019 15:08:14 +0200 Subject: [PATCH] Typo --- clippy_lints/src/methods/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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