Skip to content

Commit 8a3c3f2

Browse files
author
Matthew Murkidjanian
committed
Update README.md
This pr includes a few minor grammatical corrections.
1 parent 8cfee8b commit 8a3c3f2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

part1/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Beginner Webpack Tutorial Part 1 - Introduction To Webpack :zap:
22

3-
This is for the people like me who's first intro to webpack was a repository similar to:
3+
This is for the people like me whose first intro to webpack was a repository similar to:
44

55
* https://github.com/davezuko/react-redux-starter-kit
66
* https://github.com/webpack/react-starter
@@ -115,7 +115,7 @@ If you want to use a config file with webpack with a custom name:
115115

116116
![Official Dependency Tree](http://i.imgur.com/YU4xBPQ.png)
117117

118-
Webpack is formally referred to as a module bundler. If you want an indepth and accessible explanation
118+
Webpack is formally referred to as a module bundler. If you want an in-depth and accessible explanation
119119
on modules and module bundling definitely check out these two great articles:
120120
[here](https://medium.freecodecamp.com/javascript-modules-a-beginner-s-guide-783f7d7a5fcc#.jw1txw6uh)
121121
and [here](https://medium.com/@preethikasireddy/javascript-modules-part-2-module-bundling-5020383cf306#.lfnspler2).
@@ -302,7 +302,7 @@ imaginary 900KB file to 200KB through processes such as removing all the whitesp
302302

303303
You can also add the [OrderOccurencePlugin](https://webpack.github.io/docs/list-of-plugins.html#occurrenceorderplugin)
304304

305-
> Assign the module and chunk ids by occurrence count. Ids that are used often get lower (shorter) ids. This make ids predictable, reduces to total file size and is recommended.
305+
> Assign the module and chunk ids by occurrence count. Ids that are used often get lower (shorter) ids. This makes ids predictable, reduces to total file size and is recommended.
306306
307307
To be honest I'm not sure how the underlying mechanisms work, but in the current [webpack2 beta it's included by default](https://gist.github.com/sokra/27b24881210b56bbaff7) so I include it as well.
308308

0 commit comments

Comments
 (0)