From 33e43ac384e735829797c50d60eb3f7c69892bda Mon Sep 17 00:00:00 2001 From: Weixie Cui Date: Tue, 17 Feb 2026 10:56:05 +0800 Subject: [PATCH] typo: 'not to field' to 'not to a field' --- impl/src/fmt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/impl/src/fmt.rs b/impl/src/fmt.rs index 2988ca37..9e7b421e 100644 --- a/impl/src/fmt.rs +++ b/impl/src/fmt.rs @@ -78,7 +78,7 @@ impl Display<'_> { } let ident = IdentUnraw::new(Ident::new(repr, span)); if user_named_args.contains(&ident) { - // Refers to a named argument written by the user, not to field. + // Refers to a named argument written by the user, not to a field. out += repr; continue; }