From 3e9ea3b6044f06f588e01436cb4344ae93964846 Mon Sep 17 00:00:00 2001 From: Brayden Winterton Date: Fri, 22 Apr 2016 10:26:55 -0600 Subject: [PATCH] Make HashSet::Insert documentation more consistent --- src/libstd/collections/hash/set.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libstd/collections/hash/set.rs b/src/libstd/collections/hash/set.rs index b353a4c1ba120..e4ef3fca55dc7 100644 --- a/src/libstd/collections/hash/set.rs +++ b/src/libstd/collections/hash/set.rs @@ -535,9 +535,9 @@ impl HashSet /// 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 ///