about summary refs log tree commit diff
path: root/src/libcollections/enum_set.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-04-10 04:41:15 +0000
committerbors <bors@rust-lang.org>2017-04-10 04:41:15 +0000
commit22bae87f3bc86fc5fecc78def65733a1116aedbe (patch)
tree0016b354a5c6643a24e809027324c8c8a34334e2 /src/libcollections/enum_set.rs
parent13744ca91c93c17340e63290abd42479a3bafc1a (diff)
parent0867981f5e5dafa80135314fba3e989dc1bd6209 (diff)
downloadrust-22bae87f3bc86fc5fecc78def65733a1116aedbe.tar.gz
rust-22bae87f3bc86fc5fecc78def65733a1116aedbe.zip
Auto merge of #41178 - llogiq:collections-doc-markdown, r=frewsxcv
Apply clippy's doc_markdown improvements to libcollections

Since my last PR led to linker failure, I'm now taking much smaller steps.
This only fixes some doc_markdown warnings; as they are in comments only,
we shouldn't get any problems building.
Diffstat (limited to 'src/libcollections/enum_set.rs')
-rw-r--r--src/libcollections/enum_set.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/enum_set.rs b/src/libcollections/enum_set.rs
index e56b94b2e1e..ebee75d1a1a 100644
--- a/src/libcollections/enum_set.rs
+++ b/src/libcollections/enum_set.rs
@@ -215,7 +215,7 @@ impl<E: CLike> BitXor for EnumSet<E> {
     }
 }
 
-/// An iterator over an EnumSet
+/// An iterator over an `EnumSet`
 pub struct Iter<E> {
     index: usize,
     bits: usize,