ソースを参照

fix: 修复 CDATA.MarshalXML 注释

陈灿鑫 6 年 前
コミット
f6d07aa714
1 ファイル変更1 行追加1 行削除
  1. 1 1
      message/message.go

+ 1 - 1
message/message.go

@@ -187,7 +187,7 @@ type CommonToken struct {
 // CDATA  使用该类型,在序列化为 xml 文本时文本会被解析器忽略
 type CDATA string
 
-//  MarshalXML 实现自己的序列化方法
+// MarshalXML 实现自己的序列化方法
 func (c CDATA) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
 	return e.EncodeElement(struct {
 		string `xml:",cdata"`