Skip to content

Commit

Permalink
docs(pipeable-operators): fix typo (#5058)
Browse files Browse the repository at this point in the history
Remove apostrophe from possessive "its" in pipeable-operators.md
  • Loading branch information
willheslam authored and cartant committed Oct 3, 2019
1 parent 1364631 commit 865b7d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/pipeable-operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ In order to use the new pipeable operators and not gain bundle size, you will ne

Published along with rxjs 5.5 is builds of rxjs in ECMAScript Module format (imports and exports) with both ES5 and ES2015 language level. You can find these distributions in `node_modules/rxjs/_esm5` and `node_modules/rxjs/_esm2015` ("esm" stands for ECMAScript Modules and the number "5" or "2015" is for the ES language level). In your application source code, you should import from `rxjs/operators`, but in your Webpack configuration file you will need to re-map imports to the ESM5 (or ESM2015) version.

If you `require('rxjs/_esm5/path-mapping')`, you will receive a function that returns an object of key-value pairs mapping each input to it's file location on disk. Utilize this mapping as follows:
If you `require('rxjs/_esm5/path-mapping')`, you will receive a function that returns an object of key-value pairs mapping each input to its file location on disk. Utilize this mapping as follows:

**webpack.config.js**

Expand Down

0 comments on commit 865b7d3

Please sign in to comment.