diff options
| author | Corey Farwell <coreyf@rwell.org> | 2017-08-01 07:44:43 -0400 |
|---|---|---|
| committer | Corey Farwell <coreyf@rwell.org> | 2017-08-01 19:51:00 -0400 |
| commit | 070eb3c66775789fbfe1607d3d6ef643c9afe3db (patch) | |
| tree | 4e89d1a66f3bb59f98d2c1577fa1cecd2571f2bd /src/libstd | |
| parent | 9e192602860c897974e81c0c93b9c7293ce0fd3e (diff) | |
| download | rust-070eb3c66775789fbfe1607d3d6ef643c9afe3db.tar.gz rust-070eb3c66775789fbfe1607d3d6ef643c9afe3db.zip | |
Indicate HashSet is code-like in docs.
Diffstat (limited to 'src/libstd')
| -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 0e65a30f3b2..ff19a0a1f14 100644 --- a/src/libstd/collections/hash/set.rs +++ b/src/libstd/collections/hash/set.rs @@ -123,7 +123,7 @@ pub struct HashSet<T, S = RandomState> { } impl<T: Hash + Eq> HashSet<T, RandomState> { - /// Creates an empty HashSet. + /// Creates an empty `HashSet`. /// /// # Examples /// |
