From c8eb588bd1ba0ae4c6eac19c68364d0dae679baa Mon Sep 17 00:00:00 2001 From: Ankit Sardesai Date: Tue, 23 Apr 2024 21:49:25 -0700 Subject: [PATCH] s/ignored/optional --- docs/rules/dynamic-import-chunkname.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/rules/dynamic-import-chunkname.md b/docs/rules/dynamic-import-chunkname.md index 0697f4380..69573a784 100644 --- a/docs/rules/dynamic-import-chunkname.md +++ b/docs/rules/dynamic-import-chunkname.md @@ -87,9 +87,9 @@ The following patterns are valid: 'someModule', ); - // chunk name is ignored when using eager mode + // chunk name is optional when using eager mode import( - /* webpackMode: "eager" */, + /* webpackMode: "eager" */ 'someModule', ); ```