From ab506d6256e599571020e881424646310d976682 Mon Sep 17 00:00:00 2001 From: overlookmotel <557937+overlookmotel@users.noreply.github.com> Date: Fri, 23 Jan 2026 13:59:31 +0000 Subject: [PATCH] docs(linter/plugins): correct comment (#18456) Just correct a comment. --- apps/oxlint/src-js/package/rule_tester.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/oxlint/src-js/package/rule_tester.ts b/apps/oxlint/src-js/package/rule_tester.ts index 3ea770fbb5c78..f370f534e28c8 100644 --- a/apps/oxlint/src-js/package/rule_tester.ts +++ b/apps/oxlint/src-js/package/rule_tester.ts @@ -480,7 +480,7 @@ export class RuleTester { } } -// In debug builds only, we provide a hook to modify test cases before they're run. +// In conformance build only, we provide a hook to modify test cases before they're run. // Hook can be registered by calling `RuleTester.registerModifyTestCaseHook`. // This is used in conformance tester. let modifyTestCase: ((test: TestCase) => void) | null = null;