X Tutup
Skip to content

Commit a673bdf

Browse files
committed
Typo
1 parent 39aebca commit a673bdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Part 4 - Concurrency/3. Sequences of coincidence.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ public final <T2,D1,D2,R> Observable<R> groupJoin(
193193
Func2<? super T,? super Observable<T2>,? extends R> resultSelector)
194194
```
195195

196-
The signature is the same as `join` exept for the `resultSelector`. Now the result selector takes item from the left sequence and an observable of values from the right sequence. That observable will emit every right value that the left value is paired with. The pairing in `groupJoin` is symmetrical, just like `join`, but the contruction of results isn't. Instead of the way it is now, the argument of the `resultSelect` could just as well have been a single `GroupedObservable` with the left value as a key and the right values being emitted.
196+
The signature is the same as `join` exept for the `resultSelector`. Now the result selector takes an item from the left sequence and an observable of values from the right sequence. That observable will emit every right value that the left value is paired with. The pairing in `groupJoin` is symmetrical, just like `join`, but the contruction of results isn't. Instead of the way it is now, the argument of the `resultSelect` could just as well have been a single `GroupedObservable` with the left value as a key and the right values being emitted.
197197

198198
Lets revisit our example from `join` where the windows on the left never close.
199199

0 commit comments

Comments
 (0)
X Tutup