From d4a10e3fac73dded20fbd5e70da9f1112b00b563 Mon Sep 17 00:00:00 2001 From: Boshen Date: Mon, 6 Mar 2023 21:03:57 +0800 Subject: [PATCH] fix(linter): fix clippy warning --- crates/oxc_linter/src/autofix/fixer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/oxc_linter/src/autofix/fixer.rs b/crates/oxc_linter/src/autofix/fixer.rs index 87b0b3923..bdc1d3bcb 100644 --- a/crates/oxc_linter/src/autofix/fixer.rs +++ b/crates/oxc_linter/src/autofix/fixer.rs @@ -24,7 +24,7 @@ impl<'a> Message<'a> { } /// The fixer of the code. -/// Note that our parser has handled the BOM, so we don't need to port the BOM test cases from ESLint. +/// Note that our parser has handled the BOM, so we don't need to port the BOM test cases from `ESLint`. pub struct Fixer<'a> { source_text: &'a str, messages: Vec>,