Skip to content

Commit

Permalink
avoid ambiguous word
Browse files Browse the repository at this point in the history
  • Loading branch information
tshepang authored Jul 12, 2023
1 parent 5710fca commit df3f45d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/std/src/collections/hash/set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit df3f45d

Please sign in to comment.