diff options
| author | Andre Bogus <bogusandre@gmail.com> | 2017-04-10 05:53:10 +0200 |
|---|---|---|
| committer | Andre Bogus <bogusandre@gmail.com> | 2017-04-10 05:53:10 +0200 |
| commit | 0867981f5e5dafa80135314fba3e989dc1bd6209 (patch) | |
| tree | 903d75feeabda04aceb391d6f0f38d99c27a5cee /src/libcollections/enum_set.rs | |
| parent | ebb10a6131834e14f0685ef399b531444d631e9c (diff) | |
| download | rust-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.rs | 2 |
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, |
