diff options
Diffstat (limited to 'libgo/go/html/template/context.go')
-rw-r--r-- | libgo/go/html/template/context.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libgo/go/html/template/context.go b/libgo/go/html/template/context.go index 59e794d..c90fc1f 100644 --- a/libgo/go/html/template/context.go +++ b/libgo/go/html/template/context.go @@ -310,7 +310,8 @@ func (e element) String() string { return fmt.Sprintf("illegal element %d", int(e)) } -// attr identifies the most recent HTML attribute when inside a start tag. +// attr identifies the current HTML attribute when inside the attribute, +// that is, starting from stateAttrName until stateTag/stateText (exclusive). type attr uint8 const ( |