From: Francisco Souza Date: Mon, 10 Dec 2012 15:59:15 +0000 (-0500) Subject: encoding/xml: fix typo in Marshal documentation X-Git-Tag: go1.1rc2~1685 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=76de81da507118c1cca4de914bb8d0cf42230d98;p=gostls13.git encoding/xml: fix typo in Marshal documentation Fixes #4512. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6917043 --- diff --git a/src/pkg/encoding/xml/marshal.go b/src/pkg/encoding/xml/marshal.go index 8592a0c15c..17134c5eb4 100644 --- a/src/pkg/encoding/xml/marshal.go +++ b/src/pkg/encoding/xml/marshal.go @@ -45,7 +45,7 @@ const ( // - a field with tag "name,attr" becomes an attribute with // the given name in the XML element. // - a field with tag ",attr" becomes an attribute with the -// field name in the in the XML element. +// field name in the XML element. // - a field with tag ",chardata" is written as character data, // not as an XML element. // - a field with tag ",innerxml" is written verbatim, not subject