encoding/xml: rename fInnerXml to fInnerXML

Per the code review guidelines: "Words in names that are
initialisms or acronyms have a consistent case."

Change-Id: I347b02d2f48455f2cbbc040191ba197e3e8f23fc
Reviewed-on: https://go-review.googlesource.com/c/go/+/191970
Reviewed-by: Daniel Martí <mvdan@mvdan.cc>
Run-TryBot: Daniel Martí <mvdan@mvdan.cc>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Eddie Scholtz 2019-08-27 13:33:45 -06:00 committed by Daniel Martí
parent 5ff12f6269
commit 37373592af
3 changed files with 6 additions and 6 deletions

View file

@ -914,7 +914,7 @@ func (p *printer) marshalStruct(tinfo *typeInfo, val reflect.Value) error {
p.WriteString("-->")
continue
case fInnerXml:
case fInnerXML:
vf = indirect(vf)
iface := vf.Interface()
switch raw := iface.(type) {