Skip to content

Commit dfc5887

Browse files
committed
Update Option_filter.java
Corrected ouput typos
1 parent 8ceeb22 commit dfc5887

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

demo/src/main/java/fj/demo/Option_filter.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ public static void main(final String[] args) {
2323
final Option<Integer> o8 = o5.filter(f);
2424
final Option<Integer> o9 = o6.filter(i -> i % 2 == 0);
2525

26-
optionShow(intShow).println(o4); // None
27-
optionShow(intShow).println(o5); // None
28-
optionShow(intShow).println(o6); // Some(4)
26+
optionShow(intShow).println(o7); // None
27+
optionShow(intShow).println(o8); // None
28+
optionShow(intShow).println(o9); // Some(4)
2929
}
3030
}

0 commit comments

Comments
 (0)