From e5e6033a80af73a5622d169de09867a9d06c7c18 Mon Sep 17 00:00:00 2001 From: apstndb <803393+apstndb@users.noreply.github.com> Date: Mon, 2 Dec 2024 17:29:06 +0900 Subject: [PATCH] Add comment to LambdaArg.Args --- ast/ast.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ast/ast.go b/ast/ast.go index 57a54f64..3a27ca28 100644 --- a/ast/ast.go +++ b/ast/ast.go @@ -1202,7 +1202,7 @@ type LambdaArg struct { Lparen token.Pos // optional - Args []*Ident + Args []*Ident // if Lparen.Invalid() then len(Args) = 1 else len(Args) > 0 Expr Expr }