From 594d834cb390dae77b3541ee71567e38c992caf4 Mon Sep 17 00:00:00 2001 From: Shail Mehta Date: Sat, 11 Jan 2025 10:00:36 +0530 Subject: [PATCH] Updated Small Typo in Feature-flags.md file (#68612) Co-authored-by: shail-mehta Co-authored-by: t-hamano --- docs/how-to-guides/feature-flags.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how-to-guides/feature-flags.md b/docs/how-to-guides/feature-flags.md index 11c5ae881337dd..04fc6c08d98249 100644 --- a/docs/how-to-guides/feature-flags.md +++ b/docs/how-to-guides/feature-flags.md @@ -54,7 +54,7 @@ if ( globalThis.IS_GUTENBERG_PLUGIN ) { ```js if ( true ) { - // Wepack has replaced `globalThis.IS_GUTENBERG_PLUGIN` with `true` + // Webpack has replaced `globalThis.IS_GUTENBERG_PLUGIN` with `true` pluginOnlyFeature(); } ```