From c6be0b8d3090facce83cf2692997853e0312965e Mon Sep 17 00:00:00 2001 From: Matthew Murkidjanian Date: Mon, 15 Feb 2016 08:03:20 -0800 Subject: [PATCH 1/2] Update README.md This pr includes minor grammatical corrections. --- part1/example1/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/part1/example1/README.md b/part1/example1/README.md index 5cca3b6..60d9d61 100644 --- a/part1/example1/README.md +++ b/part1/example1/README.md @@ -68,7 +68,7 @@ The things that are bundled are only the things that you explicitly required acr As you probably noticed, I did something strange in the above example. I `required` a css file in a javascript file. -The really cool, and interesting thing about webpack is that you can `require` more than just +The really cool and interesting thing about webpack is that you can `require` more than just javascript files. There is this thing in webpack called a loader. Using these loaders, you can @@ -81,6 +81,6 @@ For example in the diagram above I had require('./styles.css') ``` -If I include [the css-loader](https://github.com/webpack/css-loader) in my webpack config, this is not only perfectly valid, but also will actually apply the CSS to my page. +Including the [the css-loader](https://github.com/webpack/css-loader) in my webpack config is not only perfectly valid, but it will also actually apply the CSS to my page. This is just a single example of the many loaders you can use with webpack. From ca1039b2483d26afc46c6db01e2a4a6c145743c9 Mon Sep 17 00:00:00 2001 From: Matthew Murkidjanian Date: Mon, 15 Feb 2016 08:41:33 -0800 Subject: [PATCH 2/2] Update README.md --- part1/example1/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/part1/example1/README.md b/part1/example1/README.md index 60d9d61..af660ea 100644 --- a/part1/example1/README.md +++ b/part1/example1/README.md @@ -81,6 +81,6 @@ For example in the diagram above I had require('./styles.css') ``` -Including the [the css-loader](https://github.com/webpack/css-loader) in my webpack config is not only perfectly valid, but it will also actually apply the CSS to my page. +If I include [the css-loader](https://github.com/webpack/css-loader) in my webpack config, this is not only perfectly valid, but also will actually apply the CSS to my page. This is just a single example of the many loaders you can use with webpack.