Make HashSet::Insert documentation more consistent

This commit is contained in:
Brayden Winterton 2016-04-22 10:26:55 -06:00
parent a264f5b7e8
commit 3e9ea3b604

View file

@ -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
///