@@ -262,7 +262,7 @@ impl<K, Q: ?Sized> super::Recover<Q> for BTreeMap<K, ()>
262262 }
263263}
264264
265- /// An iterator over a BTreeMap's entries.
265+ /// An iterator over a ` BTreeMap` 's entries.
266266#[ stable( feature = "rust1" , since = "1.0.0" ) ]
267267pub struct Iter < ' a , K : ' a , V : ' a > {
268268 range : Range < ' a , K , V > ,
@@ -276,15 +276,15 @@ impl<'a, K: 'a + fmt::Debug, V: 'a + fmt::Debug> fmt::Debug for Iter<'a, K, V> {
276276 }
277277}
278278
279- /// A mutable iterator over a BTreeMap's entries.
279+ /// A mutable iterator over a ` BTreeMap` 's entries.
280280#[ stable( feature = "rust1" , since = "1.0.0" ) ]
281281#[ derive( Debug ) ]
282282pub struct IterMut < ' a , K : ' a , V : ' a > {
283283 range : RangeMut < ' a , K , V > ,
284284 length : usize ,
285285}
286286
287- /// An owning iterator over a BTreeMap's entries.
287+ /// An owning iterator over a ` BTreeMap` 's entries.
288288#[ stable( feature = "rust1" , since = "1.0.0" ) ]
289289pub struct IntoIter < K , V > {
290290 front : Handle < NodeRef < marker:: Owned , K , V , marker:: Leaf > , marker:: Edge > ,
@@ -303,7 +303,7 @@ impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for IntoIter<K, V> {
303303 }
304304}
305305
306- /// An iterator over a BTreeMap's keys.
306+ /// An iterator over a ` BTreeMap` 's keys.
307307#[ stable( feature = "rust1" , since = "1.0.0" ) ]
308308pub struct Keys < ' a , K : ' a , V : ' a > {
309309 inner : Iter < ' a , K , V > ,
@@ -316,7 +316,7 @@ impl<'a, K: 'a + fmt::Debug, V: 'a + fmt::Debug> fmt::Debug for Keys<'a, K, V> {
316316 }
317317}
318318
319- /// An iterator over a BTreeMap's values.
319+ /// An iterator over a ` BTreeMap` 's values.
320320#[ stable( feature = "rust1" , since = "1.0.0" ) ]
321321pub struct Values < ' a , K : ' a , V : ' a > {
322322 inner : Iter < ' a , K , V > ,
@@ -329,14 +329,14 @@ impl<'a, K: 'a + fmt::Debug, V: 'a + fmt::Debug> fmt::Debug for Values<'a, K, V>
329329 }
330330}
331331
332- /// A mutable iterator over a BTreeMap's values.
332+ /// A mutable iterator over a ` BTreeMap` 's values.
333333#[ stable( feature = "map_values_mut" , since = "1.10.0" ) ]
334334#[ derive( Debug ) ]
335335pub struct ValuesMut < ' a , K : ' a , V : ' a > {
336336 inner : IterMut < ' a , K , V > ,
337337}
338338
339- /// An iterator over a sub-range of BTreeMap's entries.
339+ /// An iterator over a sub-range of ` BTreeMap` 's entries.
340340#[ stable( feature = "btree_range" , since = "1.17.0" ) ]
341341pub struct Range < ' a , K : ' a , V : ' a > {
342342 front : Handle < NodeRef < marker:: Immut < ' a > , K , V , marker:: Leaf > , marker:: Edge > ,
@@ -350,7 +350,7 @@ impl<'a, K: 'a + fmt::Debug, V: 'a + fmt::Debug> fmt::Debug for Range<'a, K, V>
350350 }
351351}
352352
353- /// A mutable iterator over a sub-range of BTreeMap's entries.
353+ /// A mutable iterator over a sub-range of ` BTreeMap` 's entries.
354354#[ stable( feature = "btree_range" , since = "1.17.0" ) ]
355355pub struct RangeMut < ' a , K : ' a , V : ' a > {
356356 front : Handle < NodeRef < marker:: Mut < ' a > , K , V , marker:: Leaf > , marker:: Edge > ,
@@ -378,12 +378,12 @@ impl<'a, K: 'a + fmt::Debug, V: 'a + fmt::Debug> fmt::Debug for RangeMut<'a, K,
378378/// [`entry`]: struct.BTreeMap.html#method.entry
379379#[ stable( feature = "rust1" , since = "1.0.0" ) ]
380380pub enum Entry < ' a , K : ' a , V : ' a > {
381- /// A vacant Entry
381+ /// A vacant ` Entry`
382382 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
383383 Vacant ( #[ stable( feature = "rust1" , since = "1.0.0" ) ]
384384 VacantEntry < ' a , K , V > ) ,
385385
386- /// An occupied Entry
386+ /// An occupied ` Entry`
387387 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
388388 Occupied ( #[ stable( feature = "rust1" , since = "1.0.0" ) ]
389389 OccupiedEntry < ' a , K , V > ) ,
@@ -403,7 +403,7 @@ impl<'a, K: 'a + Debug + Ord, V: 'a + Debug> Debug for Entry<'a, K, V> {
403403 }
404404}
405405
406- /// A vacant Entry. It is part of the [`Entry`] enum.
406+ /// A vacant ` Entry` . It is part of the [`Entry`] enum.
407407///
408408/// [`Entry`]: enum.Entry.html
409409#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -425,7 +425,7 @@ impl<'a, K: 'a + Debug + Ord, V: 'a> Debug for VacantEntry<'a, K, V> {
425425 }
426426}
427427
428- /// An occupied Entry. It is part of the [`Entry`] enum.
428+ /// An occupied ` Entry` . It is part of the [`Entry`] enum.
429429///
430430/// [`Entry`]: enum.Entry.html
431431#[ stable( feature = "rust1" , since = "1.0.0" ) ]
0 commit comments