Skip to content

Commit

Permalink
Fix typo in partition docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Berkeley Martinez committed Apr 6, 2015
1 parent e70bcc2 commit 119d161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/api/core/operators/partition.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ An example using ES6 syntax:
let [odds, evens] = Rx.Observable.range(0, 10)
.partition(x => x % 2 === 0);

let subscription1 = odds.subscribe(
let subscription1 = evens.subscribe(
x => console.log('Evens: %s', x),
e => console.log('Error: %s', e),
() => console.log('Completed')
Expand Down

0 comments on commit 119d161

Please sign in to comment.