Skip to content

Commit

Permalink
docs(combineLatest): typo in combineLatest description (#4116)
Browse files Browse the repository at this point in the history
* docs(combineLatest): fix typo

Simple typo

* docs(combineLatest): more typos
  • Loading branch information
brisberg authored and cartant committed Sep 12, 2018
1 parent 2ff0f9b commit b72f0fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/internal/observable/combineLatest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ export function combineLatest<R>(...observables: Array<ObservableInput<any> | ((
* To ensure output array has always the same length, `combineLatest` will
* actually wait for all input Observables to emit at least once,
* before it starts emitting results. This means if some Observable emits
* values before other Observables started emitting, all that values but last
* will be lost. On the other hand, if some Observable does not emit value but
* values before other Observables started emitting, all these values but the last
* will be lost. On the other hand, if some Observable does not emit a value but
* completes, resulting Observable will complete at the same moment without
* emitting anything, since it will be now impossible to include value from
* completed Observable in resulting array. Also, if some input Observable does
Expand Down

0 comments on commit b72f0fe

Please sign in to comment.