From 069cc797f935c488b6d9bb6664772d9ff47486d0 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 10 Jun 2026 10:48:07 +0000 Subject: [PATCH] fix(rename): separate doc paragraph to satisfy clippy doc_lazy_continuation The trailing 'Returns None ...' sentence followed the numbered list directly, tripping clippy::doc_lazy_continuation under -D warnings and failing CI on main. Add a blank doc line so it reads as its own paragraph. https://claude.ai/code/session_01X2eNjTxiuWTZ713JVN9nbC --- src/passes/rename.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/passes/rename.rs b/src/passes/rename.rs index 5fa0604..60efa8f 100644 --- a/src/passes/rename.rs +++ b/src/passes/rename.rs @@ -799,6 +799,7 @@ fn known_global(name: &str) -> Option<&'static str> { /// 2. only list-mutation / list-inspection members → `list`; /// 3. a single distinct, meaningful accessed property → that property /// (`e.target` → `target`, `x.userAgent` → `userAgent`). +/// /// Returns `None` when nothing is confident, falling through to `fn`/`var`. fn usage_hint(props: Option<&Vec>) -> Option { let props = props?;