Skip to content

Commit

Permalink
TakeWhileInclusive: missing field in Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Philippe-Cholet authored and jswrenn committed Jan 23, 2024
1 parent a48c5b4 commit 2e325a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/take_while_inclusive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ impl<I, F> fmt::Debug for TakeWhileInclusive<I, F>
where
I: Iterator + fmt::Debug,
{
debug_fmt_fields!(TakeWhileInclusive, iter);
debug_fmt_fields!(TakeWhileInclusive, iter, done);
}

impl<I, F> Iterator for TakeWhileInclusive<I, F>
Expand Down

0 comments on commit 2e325a0

Please sign in to comment.