From 0b69dfd0b96d7990d0c734402727e9b3854e0aa1 Mon Sep 17 00:00:00 2001 From: IWANABETHATGUY Date: Mon, 19 Aug 2024 20:35:09 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=A4=96=20doc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crates/oxc_minifier/src/plugins/replace_global_defines.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/oxc_minifier/src/plugins/replace_global_defines.rs b/crates/oxc_minifier/src/plugins/replace_global_defines.rs index 6d7acff446f92..cbe9ed4ea0d12 100644 --- a/crates/oxc_minifier/src/plugins/replace_global_defines.rs +++ b/crates/oxc_minifier/src/plugins/replace_global_defines.rs @@ -73,7 +73,7 @@ impl ReplaceGlobalDefinesConfig { } // Always move specific dot define before wildcard dot define // Keep other order unchanged - // see test case replace_global_definitions_dot_with_postfix_mixed as a example + // see test case replace_global_definitions_dot_with_postfix_mixed as an example dot_defines.sort_by(|a, b| { if !a.postfix_wildcard && b.postfix_wildcard { Ordering::Less