From d776a17f3f9321f734ea46d6014b02d72982a479 Mon Sep 17 00:00:00 2001 From: shulaoda <165626830+shulaoda@users.noreply.github.com> Date: Fri, 10 Oct 2025 12:46:25 +0000 Subject: [PATCH] docs(linter): improve `nextjs/no-typos` rule documentation (#14470) --- crates/oxc_linter/src/rules/nextjs/no_typos.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/oxc_linter/src/rules/nextjs/no_typos.rs b/crates/oxc_linter/src/rules/nextjs/no_typos.rs index 69df030f71911..7a9e5bb97df83 100644 --- a/crates/oxc_linter/src/rules/nextjs/no_typos.rs +++ b/crates/oxc_linter/src/rules/nextjs/no_typos.rs @@ -24,10 +24,11 @@ pub struct NoTypos; declare_oxc_lint!( /// ### What it does /// - /// Prevent common typos in Next.js's data fetching functions + /// Detects common typos in Next.js data fetching function names. /// /// ### Why is this bad? /// + /// Next.js will not call incorrectly named data fetching functions, causing pages to render without expected data. /// /// ### Examples ///