Skip to content

Commit

Permalink
docs(forkJoin): fix example (#4628)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tane Morgan authored and benlesh committed Mar 15, 2019
1 parent af1324b commit f6acdc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal/observable/forkJoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export function forkJoin<T>(...sources: ObservableInput<T>[]): Observable<T[]>;
* ### Use forkJoin with project function
* ```javascript
* import { forkJoin, interval } from 'rxjs';
* import { take } from 'rxjs/operators';
* import { map, take } from 'rxjs/operators';
*
* const observable = forkJoin(
* interval(1000).pipe(take(3)), // emit 0, 1, 2 every second and complete
Expand Down

0 comments on commit f6acdc0

Please sign in to comment.