Skip to content

Commit

Permalink
Fix typo in debug output of IntoIter (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
csnover authored Aug 8, 2021
1 parent b68a2ac commit 1bbbf35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1269,7 +1269,7 @@ where
T: fmt::Debug,
{
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_struct("Iter")
fmt.debug_struct("IntoIter")
.field("remaining", &self.len)
.finish()
}
Expand Down

0 comments on commit 1bbbf35

Please sign in to comment.