From 7e946a07035caae6fd1622d588abc7872a3a8158 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Sun, 22 Apr 2018 20:13:57 +0300 Subject: Fix golint warnings --- ui/messages/parser/htmltagarray.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ui/messages/parser/htmltagarray.go') diff --git a/ui/messages/parser/htmltagarray.go b/ui/messages/parser/htmltagarray.go index d66d7d9..464caa9 100644 --- a/ui/messages/parser/htmltagarray.go +++ b/ui/messages/parser/htmltagarray.go @@ -35,7 +35,7 @@ func (ta *TagArray) Push(tag string) { ta.PushMeta(&TagWithMeta{Tag: tag}) } -// Push adds the given tag to the array. +// PushMeta adds the given tag to the array. func (ta *TagArray) PushMeta(tag *TagWithMeta) { *ta = append(*ta, BlankTag) copy((*ta)[1:], *ta) @@ -78,7 +78,7 @@ func (ta *TagArray) Get(tag string) *TagWithMeta { return ta.GetAfter(tag, -1) } -// IndexAfter returns the first occurrence of the given tag, or nil if the given +// GetAfter returns the first occurrence of the given tag, or nil if the given // tag is not on the list after the given index. func (ta *TagArray) GetAfter(tag string, after int) *TagWithMeta { for i := after + 1; i < len(*ta); i++ { -- cgit v1.2.3