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

Commit e29ce35

Browse files
Updating docs zipIterable again
1 parent 55b7357 commit e29ce35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/api/core/operators/zipiterable.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### `Rx.Observable.prototype.zip(...args, [resultSelector])`
1+
### `Rx.Observable.prototype.zipIterable(...args, [resultSelector])`
22
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/zipiterable.js "View in source")
33

44
Merges the current observable sequence with iterables such as `Map`, `Array`, `Set` into one observable sequence by using the selector function whenever all of the observable sequences or an array have produced an element at a corresponding index.
@@ -15,7 +15,7 @@ Merges the current observable sequence with iterables such as `Map`, `Array`, `S
1515
var array = [3, 4, 5];
1616

1717
var source = Rx.Observable.range(0, 3)
18-
.zip(
18+
.zipIterable(
1919
array,
2020
function (s1, s2) { return s1 + ':' + s2; }
2121
);

0 commit comments

Comments
 (0)