Fix typo: irrevelent -> irrelevant

This commit is contained in:
Stanislav Tkach 2021-01-07 13:59:55 +02:00 committed by GitHub
parent 8e5c5a64a5
commit 2b3c0ade6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ declare_clippy_lint! {
/// **Why is this bad?** Since `&` is Copy, it's useless to have a
/// reference on `Option<&T>`.
///
/// **Known problems:** It may be irrevelent to use this lint on
/// **Known problems:** It may be irrelevant to use this lint on
/// public API code as it will make a breaking change to apply it.
///
/// **Example:**