Merge pull request #2641 from rcoh/patch-2

Update hash_xor_eq docs to match behavior
This commit is contained in:
Oliver Schneider 2018-04-07 09:42:54 +02:00 committed by GitHub
commit fbb5050d82
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,7 +6,7 @@ use utils::paths;
use utils::{is_automatically_derived, is_copy, match_path, span_lint_and_then};
/// **What it does:** Checks for deriving `Hash` but implementing `PartialEq`
/// explicitly.
/// explicitly or vice versa.
///
/// **Why is this bad?** The implementation of these traits must agree (for
/// example for use with `HashMap`) so its probably a bad idea to use a