From: João Paulo Taylor Ienczak Zanette Date: Thu, 8 Oct 2020 12:06:19 +0000 (-0300) Subject: clippy_lint: Fix typo (now -> not) X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=418cde0389d47628b32e533c47e64874fd1050fb;p=rust.git clippy_lint: Fix typo (now -> not) --- diff --git a/tests/ui/escape_analysis.rs b/tests/ui/escape_analysis.rs index 377a0fb502f..3d5a02bf705 100644 --- a/tests/ui/escape_analysis.rs +++ b/tests/ui/escape_analysis.rs @@ -177,5 +177,5 @@ fn closure_borrow(x: Box) { /// Issue #5542 /// -/// This shouldn't warn for `boxed_local` as it is a function implemented in C. -pub extern "C" fn do_now_warn_me(_c_pointer: Box) -> () {} +/// This shouldn't warn for `boxed_local` as it is a function to be used in C. +pub extern "C" fn do_not_warn_me(_c_pointer: Box) -> () {}