File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ impl<'a> IntoIterator for &'a Path {
95
95
/// Provides [`core::fmt::Display`] implementation to print [`Path`].
96
96
struct Display < ' a > ( & ' a Path ) ;
97
97
98
- impl < ' a > core:: fmt:: Display for Display < ' a > {
98
+ impl core:: fmt:: Display for Display < ' _ > {
99
99
fn fmt ( & self , f : & mut Formatter < ' _ > ) -> core:: fmt:: Result {
100
100
for ( i, n) in self . 0 . into_iter ( ) . enumerate ( ) {
101
101
if i != 0 {
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ impl ToOwned for EfiStr {
97
97
/// Provides [`core::fmt::Display`] to display [`EfiStr`] lossy.
98
98
struct Display < ' a > ( & ' a EfiStr ) ;
99
99
100
- impl < ' a > core:: fmt:: Display for Display < ' a > {
100
+ impl core:: fmt:: Display for Display < ' _ > {
101
101
fn fmt ( & self , f : & mut Formatter < ' _ > ) -> core:: fmt:: Result {
102
102
// SAFETY: EfiStr guarantee to have NUL at the end.
103
103
let mut ptr = self . 0 . as_ptr ( ) ;
You can’t perform that action at this time.
0 commit comments