From 50f27197837e57e1d68b8905eaa66ea142bd45fc Mon Sep 17 00:00:00 2001 From: Macks Date: Tue, 16 Jun 2020 19:10:58 -0400 Subject: [PATCH] fix doc lint error --- src/text/template/parse/node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/text/template/parse/node.go b/src/text/template/parse/node.go index 1c116ea6fa..dddc7752a2 100644 --- a/src/text/template/parse/node.go +++ b/src/text/template/parse/node.go @@ -349,7 +349,7 @@ func (i *IdentifierNode) Copy() Node { return NewIdentifier(i.Ident).SetTree(i.tr).SetPos(i.Pos) } -// AssignNode holds a list of variable names, possibly with chained field +// VariableNode holds a list of variable names, possibly with chained field // accesses. The dollar sign is part of the (first) name. type VariableNode struct { NodeType