diff options
| author | Frank Rehberger <frehberg@gmail.com> | 2016-09-26 18:16:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-26 18:16:06 +0200 |
| commit | 6c4616c72d8f845d2a0555b8f1610c4bf5ca7525 (patch) | |
| tree | bc5e39f78f5ba13d8fe71c99694d95a72f477b46 | |
| parent | ba84d4ff817e724b3a910ec4187cb6418e037b5b (diff) | |
| download | rust-6c4616c72d8f845d2a0555b8f1610c4bf5ca7525.tar.gz rust-6c4616c72d8f845d2a0555b8f1610c4bf5ca7525.zip | |
Update set.rs
| -rw-r--r-- | src/libstd/collections/hash/set.rs | 2 |
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; /// |
