From: Hirochika Matsumoto Date: Tue, 22 Sep 2020 18:06:52 +0000 (+0900) Subject: Fix typo X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=3ed89026231a17beed9e93b055ea1b6192997a68;p=rust.git Fix typo Co-authored-by: Philipp Krones --- diff --git a/clippy_lints/src/unnecessary_wrap.rs b/clippy_lints/src/unnecessary_wrap.rs index 53ade7baec7..e5ef7cde789 100644 --- a/clippy_lints/src/unnecessary_wrap.rs +++ b/clippy_lints/src/unnecessary_wrap.rs @@ -17,7 +17,7 @@ /// **Why is this bad?** It is not meaningful to wrap values when no `None` or `Err` is returned. /// /// **Known problems:** Since this lint changes function type signature, you may need to - /// adjust some codes at callee side. + /// adjust some code at callee side. /// /// **Example:** ///