From 3f8c3b27e4c7ec0a3fd293c642b06eb3976c8813 Mon Sep 17 00:00:00 2001 From: Ahmed Hakeem <65634467+Ahmed-Hakeem@users.noreply.github.com> Date: Sun, 15 Sep 2024 09:24:59 -0700 Subject: [PATCH] docs(plugins): replace a typo with a convenient word --- src/content/concepts/plugins.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/concepts/plugins.mdx b/src/content/concepts/plugins.mdx index a1ef842f85c8..b0d67294f969 100644 --- a/src/content/concepts/plugins.mdx +++ b/src/content/concepts/plugins.mdx @@ -37,7 +37,7 @@ class ConsoleLogOnBuildWebpackPlugin { module.exports = ConsoleLogOnBuildWebpackPlugin; ``` -It is recommended that the first parameter of the tap method of the compiler hook should be a caramelized version of the plugin name. It is advisable to use a constant for this so it can be reused in all hooks. +It is recommended that the first parameter of the tap method of the compiler hook should be a camelized version of the plugin name. It is advisable to use a constant for this so it can be reused in all hooks. ## Usage