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

Commit 19405ad

Browse files
committed
added contingency to description
It's important to know that each of the observable sequences passed in must have emitted at least one element. Extra sentence taken from: http://reactivex.io/documentation/operators/combinelatest.html
1 parent 7d7a09f commit 19405ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

doc/api/core/operators/combinelatestproto.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
### `Rx.Observable.prototype.combineLatest(...args, [resultSelector])`
22
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/combinelatestproto.js "View in source")
33

4-
Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. This can be in the form of an argument list of observables or an array. If the result selector is omitted, a list with the elements will be yielded.
4+
Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element (so long as each of the source observable sequences has emitted at least one element). This can be in the form of an argument list of observables or an array. If the result selector is omitted, a list with the elements will be yielded.
55

66
#### Arguments
77
1. `args` *(arguments | Array)*: An array or arguments of Observable sequences.

0 commit comments

Comments
 (0)