Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

Commit 8518d29

Browse files
Merge pull request #655 from BerkeleyTrue/patch-1
Fix typo in partition docs
2 parents e70bcc2 + 119d161 commit 8518d29

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

doc/api/core/operators/partition.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ An example using ES6 syntax:
2020
let [odds, evens] = Rx.Observable.range(0, 10)
2121
.partition(x => x % 2 === 0);
2222

23-
let subscription1 = odds.subscribe(
23+
let subscription1 = evens.subscribe(
2424
x => console.log('Evens: %s', x),
2525
e => console.log('Error: %s', e),
2626
() => console.log('Completed')

0 commit comments

Comments
 (0)