Skip to content

Commit

Permalink
added docs
Browse files Browse the repository at this point in the history
  • Loading branch information
flexatone committed Apr 9, 2024
1 parent 36827f2 commit 0e23796
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -388,9 +388,9 @@ where

impl<I> Iterator for IterState<I>
where
I: Iterator<Item = i128>,
I: Iterator<Item = i128>, // the values returned by iterator
{
type Item = bool;
type Item = bool; // the value returned

fn next(&mut self) -> Option<Self::Item> {
match self.iterator.next() {
Expand Down

0 comments on commit 0e23796

Please sign in to comment.