Skip to content

Commit feb3ae6

Browse files
committed
Merge pull request Froussios#19 from ctranxuan/patch-1
fix(typo)
2 parents 565dd06 + 57cdb22 commit feb3ae6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Part 4 - Concurrency/1. Scheduling and threading.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ We see here that we called `onNext` on our subject from 3 different threads. Eve
3737

3838
## subscribeOn and observeOn
3939

40-
`subscribeOn` and `observeOn` allow you to control you to control the invocation of the subscription and the reception of notifications (what thread will call `onNext`/`onError`/`onCompleted` on your observer).
40+
`subscribeOn` and `observeOn` allow you to control the invocation of the subscription and the reception of notifications (what thread will call `onNext`/`onError`/`onCompleted` on your observer).
4141

4242
```java
4343
public final Observable<T> observeOn(Scheduler scheduler)

0 commit comments

Comments
 (0)