瀏覽代碼

html: gofmt -w -s

Change-Id: I2da52ff2afbf0417dbe6c08105fafeb168e936ee
Reviewed-on: https://go-review.googlesource.com/c/net/+/169358
Run-TryBot: Mikio Hara <mikioh.public.networking@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Daniel Martí <mvdan@mvdan.cc>
Mikio Hara 6 年之前
父節點
當前提交
a33f666f30
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      html/parse.go

+ 1 - 1
html/parse.go

@@ -1298,7 +1298,7 @@ func (p *parser) inBodyEndTagOther(tagAtom a.Atom, tagName string) {
 		//
 		// The if condition here is equivalent to (p.oe[i].Data == tagName).
 		if (p.oe[i].DataAtom == tagAtom) &&
-		    ((tagAtom != 0) || (p.oe[i].Data == tagName)) {
+			((tagAtom != 0) || (p.oe[i].Data == tagName)) {
 			p.oe = p.oe[:i]
 			break
 		}