From ecf4f5128f00128fb856798592203146d864e203 Mon Sep 17 00:00:00 2001 From: Philipp Hansch Date: Sun, 13 May 2018 13:47:54 +0200 Subject: [PATCH] Fix two typos --- clippy_lints/src/copies.rs | 2 +- clippy_lints/src/shadow.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/clippy_lints/src/copies.rs b/clippy_lints/src/copies.rs index 5cbf7d03191c..1a8c0c28e8e7 100644 --- a/clippy_lints/src/copies.rs +++ b/clippy_lints/src/copies.rs @@ -170,7 +170,7 @@ fn lint_same_cond(cx: &LateContext, conds: &[&Expr]) { } } -/// Implementation if `MATCH_SAME_ARMS`. +/// Implementation of `MATCH_SAME_ARMS`. fn lint_match_arms(cx: &LateContext, expr: &Expr) { if let ExprMatch(_, ref arms, MatchSource::Normal) = expr.node { let hash = |&(_, arm): &(usize, &Arm)| -> u64 { diff --git a/clippy_lints/src/shadow.rs b/clippy_lints/src/shadow.rs index b7e79a06327e..ab085606e290 100644 --- a/clippy_lints/src/shadow.rs +++ b/clippy_lints/src/shadow.rs @@ -55,7 +55,7 @@ declare_clippy_lint! { /// **Why is this bad?** Name shadowing can hurt readability, especially in /// large code bases, because it is easy to lose track of the active binding at /// any place in the code. This can be alleviated by either giving more specific -/// names to bindings ore introducing more scopes to contain the bindings. +/// names to bindings or introducing more scopes to contain the bindings. /// /// **Known problems:** This lint, as the other shadowing related lints, /// currently only catches very simple patterns.