Skip to content

Commit

Permalink
Make Btreeset::Insert docs more consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
bwinterton committed Apr 29, 2016
1 parent 115c6c8 commit 3c1d087
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libcollections/btree/set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -477,9 +477,9 @@ impl<T: Ord> BTreeSet<T> {

/// 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, and the
/// If the set did have this value present, `false` is returned, and the
/// entry is not updated. See the [module-level documentation] for more.
///
/// [module-level documentation]: index.html#insert-and-complex-keys
Expand Down

0 comments on commit 3c1d087

Please sign in to comment.