about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrank Rehberger <frehberg@gmail.com>2016-09-26 18:16:06 +0200
committerGitHub <noreply@github.com>2016-09-26 18:16:06 +0200
commit6c4616c72d8f845d2a0555b8f1610c4bf5ca7525 (patch)
treebc5e39f78f5ba13d8fe71c99694d95a72f477b46
parentba84d4ff817e724b3a910ec4187cb6418e037b5b (diff)
downloadrust-6c4616c72d8f845d2a0555b8f1610c4bf5ca7525.tar.gz
rust-6c4616c72d8f845d2a0555b8f1610c4bf5ca7525.zip
Update set.rs
-rw-r--r--src/libstd/collections/hash/set.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/collections/hash/set.rs b/src/libstd/collections/hash/set.rs
index 572e333def4..505bbb33b20 100644
--- a/src/libstd/collections/hash/set.rs
+++ b/src/libstd/collections/hash/set.rs
@@ -100,7 +100,7 @@ const INITIAL_CAPACITY: usize = 32;
 ///     println!("{:?}", x);
 /// }
 /// ```
-/// HashSet with fixed list of elements can be initialized from vector:
+/// HashSet with fixed list of elements can be initialized from an array:
 /// ```
 /// use std::collections::HashSet;
 ///