Skip to content

Commit

Permalink
docs(race): Update the race operator docs (#4584)
Browse files Browse the repository at this point in the history
* docs(race): Update the race operator  docs

Updating the documentation of  race operator to replace "emits an item" with "emits a next, error or complete notification"  #4561

* updated grammer
  • Loading branch information
aloksingh3112 authored and benlesh committed Feb 25, 2019
1 parent c4a84cc commit 8f7d7fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/internal/operators/race.ts
Expand Up @@ -15,8 +15,8 @@ export function race<T, R>(...observables: Array<Observable<any> | Array<Observa
/* tslint:enable:max-line-length */

/**
* Returns an Observable that mirrors the first source Observable to emit an item
* from the combination of this Observable and supplied Observables.
* Returns an Observable that mirrors the first source Observable to emit a next,
* error or complete notification from the combination of this Observable and supplied Observables.
* @param {...Observables} ...observables Sources used to race for which Observable emits first.
* @return {Observable} An Observable that mirrors the output of the first Observable to emit an item.
* @method race
Expand Down

0 comments on commit 8f7d7fb

Please sign in to comment.