From 76de81da507118c1cca4de914bb8d0cf42230d98 Mon Sep 17 00:00:00 2001 From: Francisco Souza Date: Mon, 10 Dec 2012 10:59:15 -0500 Subject: [PATCH] encoding/xml: fix typo in Marshal documentation Fixes #4512. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6917043 --- src/pkg/encoding/xml/marshal.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.48.1