From 3c1d08744db20cf0e414c597ab3b8d62fe4d7f66 Mon Sep 17 00:00:00 2001 From: Brayden Winterton Date: Fri, 29 Apr 2016 09:59:39 -0600 Subject: [PATCH] Make Btreeset::Insert docs more consistent --- src/libcollections/btree/set.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcollections/btree/set.rs b/src/libcollections/btree/set.rs index 5419d7a301a00..3ee42499a38f8 100644 --- a/src/libcollections/btree/set.rs +++ b/src/libcollections/btree/set.rs @@ -477,9 +477,9 @@ impl BTreeSet { /// 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