clippy_lint: Fix typo (now -> not)

This commit is contained in:
João Paulo Taylor Ienczak Zanette 2020-10-08 09:06:19 -03:00
parent cc26924cce
commit 418cde0389

View File

@ -177,5 +177,5 @@ fn closure_borrow(x: Box<A>) {
/// 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<String>) -> () {}
/// 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<String>) -> () {}