Skip to content

Commit

Permalink
docs(concatAll): fix map import (ReactiveX#4535)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tane Morgan authored and benlesh committed Feb 7, 2019
1 parent 0d7d123 commit a0a54b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal/operators/concatAll.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function concatAll<R>(): OperatorFunction<any, R>;
* For each click event, tick every second from 0 to 3, with no concurrency
* ```javascript
* import { fromEvent, interval } from 'rxjs';
* import { ma, take, concatAll } from 'rxjs/operators';
* import { map, take, concatAll } from 'rxjs/operators';
*
* const clicks = fromEvent(document, 'click');
* const higherOrder = clicks.pipe(
Expand Down

0 comments on commit a0a54b9

Please sign in to comment.