From 2aef3f0daf7a58a4429789cb184b3fe0ce215df7 Mon Sep 17 00:00:00 2001 From: Brian Donovan Date: Wed, 30 Nov 2016 08:29:31 -0800 Subject: [PATCH] Remove incorrect apostrophe usage in "it's". The word should be "its" since the intention is to convey possession, not a contraction of "it is". --- content/concepts/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/concepts/index.md b/content/concepts/index.md index 45d6f056704b..537c948667fe 100644 --- a/content/concepts/index.md +++ b/content/concepts/index.md @@ -84,7 +84,7 @@ const config = { }; ``` -In the configuration above we have defined a rules which used our loader with it's two required properties: `test`, and `use`. This tells webpack's compiler the following: +In the configuration above we have defined a rules which used our loader with its two required properties: `test`, and `use`. This tells webpack's compiler the following: > "Hey webpack compiler, when you come across a path that resolves to a '.js' or '.jsx' file inside of a `require()`/`import` statement, **use** the `babel-loader` to transform it before you add it to the bundle".