This commit is contained in:
Felix Rabe 2019-04-18 15:08:14 +02:00 committed by GitHub
parent c6e43b1ba7
commit b4f2200d5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -359,7 +359,7 @@ declare_clippy_lint! {
/// **Why is this bad?** The function will always be called.
///
/// **Known problems:** If the function has side-effects, not calling it will
/// change the semantic of the program, but you shouldn't rely on that anyway.
/// change the semantics of the program, but you shouldn't rely on that anyway.
///
/// **Example:**
/// ```rust