src/pkg/xml/marshal.go | 8 ++++---- diff --git a/src/pkg/xml/marshal.go b/src/pkg/xml/marshal.go index 2ac03a91e2d8b21bcea5c8b3d5a1387fcb74f9ad..f6e5bf5cdba5d3f6a184ea3a661f7c512533dc16 100644 --- a/src/pkg/xml/marshal.go +++ b/src/pkg/xml/marshal.go @@ -14,10 +14,10 @@ "strings" ) const ( - // A generic XML header suitable for use with the output of Marshal and MarshalIndent. - // This is not automatically added to any output of this package, it is provided as a - // convenience. - Header = `\n` + // A generic XML header suitable for use with the output of Marshal and + // MarshalIndent. This is not automatically added to any output of this + // package, it is provided as a convenience. + Header = `` + "\n" ) // A Marshaler can produce well-formatted XML representing its internal state.