Skip to content

Commit 35f07bf

Browse files
codecopmtumilowicz
authored andcommitted
Fix wrong class name in hint.
1 parent 065d306 commit 35f07bf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/reactive/workshop/Step7_StreamWorkshop.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ interface Step7_StreamWorkshop<In> extends Flow.Publisher<In> {
88
default <R> Step9_MappingProcessorWorkshop<In, R> map(Function<In, R> map) {
99
// create mapping processor, subscribe with it and return it
1010
// hint: Step9_MappingProcessorWorkshop, this.subscribe(...)
11+
1112
return null;
1213
}
1314

1415
default Step10_FilteringProcessorWorkshop<In> filter(Predicate<In> p) {
1516
// create filtering processor, subscribe with it and return it
16-
// hint: Step9_MappingProcessorWorkshop, this.subscribe(...)
17+
// hint: Step10_FilteringProcessorWorkshop, this.subscribe(...)
1718

1819
return null;
1920
}

0 commit comments

Comments
 (0)