@@ -74,19 +74,19 @@ pub struct BTreeSet<T> {
74
74
map : BTreeMap < T , ( ) > ,
75
75
}
76
76
77
- /// An iterator over a BTreeSet's items.
77
+ /// An iterator over a ` BTreeSet` 's items.
78
78
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
79
79
pub struct Iter < ' a , T : ' a > {
80
80
iter : Keys < ' a , T , ( ) > ,
81
81
}
82
82
83
- /// An owning iterator over a BTreeSet's items.
83
+ /// An owning iterator over a ` BTreeSet` 's items.
84
84
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
85
85
pub struct IntoIter < T > {
86
86
iter : :: btree_map:: IntoIter < T , ( ) > ,
87
87
}
88
88
89
- /// An iterator over a sub-range of BTreeSet's items.
89
+ /// An iterator over a sub-range of ` BTreeSet` 's items.
90
90
pub struct Range < ' a , T : ' a > {
91
91
iter : :: btree_map:: Range < ' a , T , ( ) > ,
92
92
}
@@ -120,7 +120,7 @@ pub struct Union<'a, T: 'a> {
120
120
}
121
121
122
122
impl < T : Ord > BTreeSet < T > {
123
- /// Makes a new BTreeSet with a reasonable choice of B.
123
+ /// Makes a new ` BTreeSet` with a reasonable choice of B.
124
124
///
125
125
/// # Examples
126
126
///
@@ -137,7 +137,7 @@ impl<T: Ord> BTreeSet<T> {
137
137
}
138
138
139
139
impl < T > BTreeSet < T > {
140
- /// Gets an iterator over the BTreeSet's contents.
140
+ /// Gets an iterator over the ` BTreeSet` 's contents.
141
141
///
142
142
/// # Examples
143
143
///
0 commit comments