Skip to content

Commit 79f6f5c

Browse files
authored
Merge pull request #29 from na-sa-do/master
Fix a test that has been broken since FromFallibleIterator was removed
2 parents c7a3f6b + e31c464 commit 79f6f5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1791,10 +1791,10 @@ where
17911791
}
17921792
}
17931793

1794-
/// Creates an iterator from a fallible function generating values
1794+
/// Creates an iterator from a fallible function generating values.
17951795
///
17961796
/// ```
1797-
/// # use fallible_iterator::{from_fn, FromFallibleIterator, FallibleIterator};
1797+
/// # use fallible_iterator::{from_fn, FallibleIterator};
17981798
/// let mut count = 0;
17991799
/// let counter = from_fn(move || {
18001800
/// // Increment our count. This is why we started at zero.

0 commit comments

Comments
 (0)