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

Commit 328260a

Browse files
Merge pull request #1129 from rickyk586/patch-1
added contingency to description
2 parents 7d7a09f + 19405ad commit 328260a

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)