Skip to content

Commit

Permalink
Rollup merge of rust-lang#113618 - tshepang:patch-1, r=jyn514
Browse files Browse the repository at this point in the history
update ancient note
  • Loading branch information
matthiaskrgr authored Jul 13, 2023
2 parents 83fb198 + df3f45d commit c9ef99b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/std/src/collections/hash/set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ 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`], this will in the
/// future be implied by [`Eq`].
/// [`Eq`] and [`Hash`]. We must also derive [`PartialEq`],
/// which is required if [`Eq`] is derived.
///
/// ```
/// use std::collections::HashSet;
Expand Down

0 comments on commit c9ef99b

Please sign in to comment.