Tshepang Mbambo 2023-07-12 20:10:52 +02:00 committed by GitHub
parent 5710fca279
commit df3f45dbc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,7 +66,7 @@ use super::map::{map_try_reserve_error, RandomState};
///
/// The easiest way to use `HashSet` with a custom type is to derive
/// [`Eq`] and [`Hash`]. We must also derive [`PartialEq`],
/// which is implied by [`Eq`].
/// which is required if [`Eq`] is derived.
///
/// ```
/// use std::collections::HashSet;