From 9275ae60966d4c76814c313c84fb7c744b5187d2 Mon Sep 17 00:00:00 2001 From: Greg Trevellick Date: Mon, 27 Aug 2018 17:32:00 +0100 Subject: [PATCH] Minor wording change Readability improvement in a sentence: Before "Now we tell webpack to extract these source maps and into our final bundle:" After "Now we tell webpack to extract these source maps and include in our final bundle:" --- src/content/guides/typescript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/guides/typescript.md b/src/content/guides/typescript.md index cf3fa9a12c95..1051db1e5b29 100644 --- a/src/content/guides/typescript.md +++ b/src/content/guides/typescript.md @@ -119,7 +119,7 @@ __tsconfig.json__ } ``` -Now we need to tell webpack to extract these source maps and into our final bundle: +Now we need to tell webpack to extract these source maps and include in our final bundle: __webpack.config.js__