Skip to content

Commit

Permalink
Fix suspected typo (#5340)
Browse files Browse the repository at this point in the history
* Fix suspected typo

* Fix another typo
  • Loading branch information
cartant authored and benlesh committed Mar 17, 2020
1 parent 1d8f4f3 commit 4b5e5d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs_app/content/guide/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ Also see the [Join Creation Operators](#join-creation-operators) section above.



## Creating custom observables
## Creating custom operators

### Use the `pipe()` function to make new operators

Expand All @@ -275,7 +275,7 @@ For example, you could make a function that discarded odd values and doubled eve

```ts
import { pipe } from 'rxjs';
import { filter, map } from 'rxjs';
import { filter, map } from 'rxjs/operators';

function discardOddDoubleEven() {
return pipe(
Expand Down

0 comments on commit 4b5e5d7

Please sign in to comment.