File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11use crate :: fmt;
22
33/// Creates an iterator with the provided closure
4- /// `F: FnMut() -> Option<T>` as its `[ next](Iterator::next)` method.
4+ /// `F: FnMut() -> Option<T>` as its [` next` ](Iterator::next) method.
55///
66/// The iterator will yield the `T`s returned from the closure.
77///
Original file line number Diff line number Diff line change @@ -7,14 +7,14 @@ use core::any::Any;
77
88pub ( crate ) unsafe fn cleanup ( _ptr : * mut u8 ) -> Box < dyn Any + Send > {
99 extern "C" {
10- pub fn __rust_abort ( ) -> !;
10+ fn __rust_abort ( ) -> !;
1111 }
1212 __rust_abort ( ) ;
1313}
1414
1515pub ( crate ) unsafe fn panic ( _data : Box < dyn Any + Send > ) -> u32 {
1616 extern "C" {
17- pub fn __rust_abort ( ) -> !;
17+ fn __rust_abort ( ) -> !;
1818 }
1919 __rust_abort ( ) ;
2020}
You can’t perform that action at this time.
0 commit comments