some derive cleanup

This commit is contained in:
Robin Appelman 2023-03-07 22:44:05 +01:00
commit c06e09e691
5 changed files with 58 additions and 49 deletions

View file

@ -160,7 +160,7 @@ impl<'a> Iterator for LineSplit<'a> {
None if self.start < self.input.len() => {
let line = &self.input[self.start..];
self.start = self.input.len();
Some(dbg!(line.trim_end_matches("\n")))
Some(line.trim_end_matches("\n"))
}
_ => None,
}