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

Commit 8998098

Browse files
Merge pull request #578 from unao/master
Fixing small issues in docs.
2 parents b64d596 + 6dee0ab commit 8998098

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

doc/api/core/operators/flatmaplatest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var source = Rx.Observable
2727

2828
var subscription = source.subscribe(
2929
function (x) {
30-
console.log('Next: %', x);
30+
console.log('Next: %s', x);
3131
},
3232
function (err) {
3333
console.log('Error: %s', err);

doc/api/core/operators/merge.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ var source2 = Rx.Observable.interval(150)
2121

2222
var source = Rx.Observable.merge(
2323
source1,
24-
source2);
24+
source2)
25+
.take(5);
2526

2627
var subscription = source.subscribe(
2728
function (x) {

0 commit comments

Comments
 (0)