about summary refs log tree commit diff
path: root/src/libcollections/enum_set.rs
diff options
context:
space:
mode:
authorAndre Bogus <bogusandre@gmail.com>2017-04-10 05:53:10 +0200
committerAndre Bogus <bogusandre@gmail.com>2017-04-10 05:53:10 +0200
commit0867981f5e5dafa80135314fba3e989dc1bd6209 (patch)
tree903d75feeabda04aceb391d6f0f38d99c27a5cee /src/libcollections/enum_set.rs
parentebb10a6131834e14f0685ef399b531444d631e9c (diff)
downloadrust-0867981f5e5dafa80135314fba3e989dc1bd6209.tar.gz
rust-0867981f5e5dafa80135314fba3e989dc1bd6209.zip
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,