Skip to content

Commit

Permalink
Make HashSet::Insert documentation more consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
bwinterton committed Apr 22, 2016
1 parent a264f5b commit 3e9ea3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstd/collections/hash/set.rs
Expand Up @@ -535,9 +535,9 @@ impl<T, S> HashSet<T, S>

/// Adds a value to the set.
///
/// If the set did not have a value present, `true` is returned.
/// If the set did not have this value present, `true` is returned.
///
/// If the set did have this key present, `false` is returned.
/// If the set did have this value present, `false` is returned.
///
/// # Examples
///
Expand Down

0 comments on commit 3e9ea3b

Please sign in to comment.