Skip to content

Commit

Permalink
docs(MIGRATION): fix typo in operation interface description
Browse files Browse the repository at this point in the history
  • Loading branch information
tomraithel committed Dec 15, 2015
1 parent 44a8ca7 commit 6303558
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Observers and Subjects alike) has changed.

- `observer.onNext(value)` -> `observer.next(value)`
- `observer.onError(err)` -> `observer.error(err)`
- `observer.onCompleted()` -> `observer.completed()`
- `observer.onCompleted()` -> `observer.complete()`

So what was once `subject.onNext("hi")` is now `subject.next("hi")`.

Expand Down

0 comments on commit 6303558

Please sign in to comment.