Skip to content

Commit

Permalink
fixed lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
0xba1 committed Jul 28, 2022
1 parent 4388e73 commit 50a9ff8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/src/_iterable.dart
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,11 @@ extension Collect<T, E> on Iterable<Result<T, E>> {
/// final valueList = list.sieve();
/// expect(valueList, [1, 2, 3, 4]);
///
/// final list = <Result<int, String>>[err('Bad'), err('Really bad'), err('Really really bad')];
/// final list = <Result<int, String>>[
/// err('Bad'),
/// err('Really bad'),
/// err('Really really bad'),
/// ];
/// final valueList = list.sieve();
/// expect(valueList, <int>[]);
/// ```
Expand Down

0 comments on commit 50a9ff8

Please sign in to comment.