Skip to content

Commit 5a060cd

Browse files
authored
style: fix clippy format lint (#69)
1 parent 627482d commit 5a060cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reader.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ where
192192
Event::Decl(_) | Event::CData(_) | Event::Empty(_) | Event::Text(_) => {}
193193
Event::Eof => break,
194194
Event::Comment(_) => {}
195-
x => return Err(Error::InvalidInput(format!("{:?}", x))),
195+
x => return Err(Error::InvalidInput(format!("{x:?}"))),
196196
};
197197
}
198198

0 commit comments

Comments
 (0)