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

Commit 2c85bfc

Browse files
committed
Remove an errant comma that broke selectMany example
1 parent 47a71e6 commit 2c85bfc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

doc/api/core/operators/selectmany.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Rx.Observable.of(2, 3, 5).selectMany(
108108
).subscribe(
109109
function(next) {
110110
console.log(
111-
'Outer: ' + next.outer + ', Inner: ' + next.inner, +
111+
'Outer: ' + next.outer + ', Inner: ' + next.inner +
112112
', InnerIndex: ' + next.innerIdx + ', OuterIndex: ' + next.outerIdx
113113
);
114114
},

0 commit comments

Comments
 (0)