File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
library/core/src/iter/adapters Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -5256,7 +5256,7 @@ dependencies = [
5256
5256
" chrono" ,
5257
5257
" lazy_static" ,
5258
5258
" matchers" ,
5259
- " parking_lot 0.11 .0" ,
5259
+ " parking_lot 0.9 .0" ,
5260
5260
" regex" ,
5261
5261
" serde" ,
5262
5262
" serde_json" ,
Original file line number Diff line number Diff line change @@ -120,8 +120,7 @@ where
120
120
/// This `struct` is created by the [`flatten`] method on [`Iterator`]. See its
121
121
/// documentation for more.
122
122
///
123
- /// [`flatten`]: Iterator::flatten
124
- /// [`Iterator`]: trait.Iterator.html
123
+ /// [`flatten`]: Iterator::flatten()
125
124
#[ must_use = "iterators are lazy and do nothing unless consumed" ]
126
125
#[ stable( feature = "iterator_flatten" , since = "1.29.0" ) ]
127
126
pub struct Flatten < I : Iterator < Item : IntoIterator > > {
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ pub unsafe trait SourceIter {
110
110
/// * whatever remains in the source after iteration has stopped
111
111
/// * the memory that has become unused by advancing a consuming iterator
112
112
///
113
- /// [`next()`]: Iterator::next
113
+ /// [`next()`]: Iterator::next()
114
114
unsafe fn as_inner ( & mut self ) -> & mut Self :: Source ;
115
115
}
116
116
You can’t perform that action at this time.
0 commit comments