Skip to content

Commit df3f45d

Browse files
authored
avoid ambiguous word
See #113618 (review)
1 parent 5710fca commit df3f45d

File tree

1 file changed

+1
-1
lines changed
  • library/std/src/collections/hash

1 file changed

+1
-1
lines changed

library/std/src/collections/hash/set.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ use super::map::{map_try_reserve_error, RandomState};
6666
///
6767
/// The easiest way to use `HashSet` with a custom type is to derive
6868
/// [`Eq`] and [`Hash`]. We must also derive [`PartialEq`],
69-
/// which is implied by [`Eq`].
69+
/// which is required if [`Eq`] is derived.
7070
///
7171
/// ```
7272
/// use std::collections::HashSet;

0 commit comments

Comments
 (0)