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

Commit 58d64ef

Browse files
Wortmann, Jan-NiklasWortmann, Jan-Niklas
authored andcommitted
docs(operators): add es6 import
1 parent db6877e commit 58d64ef

File tree

1 file changed

+3
-1
lines changed
  • src/operator-docs/utility

1 file changed

+3
-1
lines changed

src/operator-docs/utility/let.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ export const letOperator: OperatorDoc = {
2929
{
3030
name: 'calls concat as part of a pipeline',
3131
code: `
32-
const obs = Rx.Observable.range(1, 3);
32+
import { range } from 'rxjs/observable/range';
33+
34+
const obs = range(1, 3);
3335
3436
const source = obs.let((o) => o.concat(o));
3537

0 commit comments

Comments
 (0)