Skip to content

Commit

Permalink
docs: Fix typo in lettable operators article (#2846)
Browse files Browse the repository at this point in the history
  • Loading branch information
Brocco authored and benlesh committed Sep 23, 2017
1 parent a8fb513 commit 1b6aa87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/lettable-operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ There is also a `pipe` utility function at `rxjs/utils/pipe` that can be used to

## Usage

You pull in any operator you nee from one spot, under `'rxjs/operators'` (**plural!**). It's also recommended to pull in the Observable creation methods you need directly as shown below with `range`:
You pull in any operator you need from one spot, under `'rxjs/operators'` (**plural!**). It's also recommended to pull in the Observable creation methods you need directly as shown below with `range`:

```ts
import { range } from 'rxjs/observable/range';
Expand Down Expand Up @@ -80,4 +80,4 @@ interval(1000).pipe(
)
.subscribe(x => console.log(x));
// [0, 12, 24]
```
```

0 comments on commit 1b6aa87

Please sign in to comment.