From 94dd2f19b51a54939c952721ed98cc85a74ad754 Mon Sep 17 00:00:00 2001 From: Alex Ownejazayeri Date: Mon, 11 Jul 2022 13:03:17 -0700 Subject: [PATCH] fix(concepts): small grammatical edit - Edit usage of parentheses for clarity --- src/content/concepts/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/concepts/index.mdx b/src/content/concepts/index.mdx index 0454b287af6c..d0cefeccf433 100644 --- a/src/content/concepts/index.mdx +++ b/src/content/concepts/index.mdx @@ -49,7 +49,7 @@ For a better understanding of the ideas behind module bundlers and how they work An **entry point** indicates which module webpack should use to begin building out its internal [dependency graph](/concepts/dependency-graph/). Webpack will figure out which other modules and libraries that entry point depends on (directly and indirectly). -By default its value is `./src/index.js`, but you can specify a different (or multiple entry points) by setting an [`entry` property in the webpack configuration](/configuration/entry-context/#entry). For example: +By default its value is `./src/index.js`, but you can specify a different (or multiple) entry points by setting an [`entry` property in the webpack configuration](/configuration/entry-context/#entry). For example: **webpack.config.js**