Skip to content

Commit

Permalink
docs(scheduler): Fix inconsistency with the naming (ReactiveX#4267)
Browse files Browse the repository at this point in the history
  • Loading branch information
taueres authored and cartant committed Oct 20, 2018
1 parent 6fd5c92 commit bcdca76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/scheduler.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ observable.subscribe(finalObserver);
console.log('just after subscribe');
```

The `proxyObserver` is created in `observeOn(Rx.Scheduler.async)`, and its `next(val)` function is approximately the following:
The `proxyObserver` is created in `observeOn(asyncScheduler)`, and its `next(val)` function is approximately the following:

```ts
const proxyObserver = {
Expand Down

0 comments on commit bcdca76

Please sign in to comment.