1
0
mirror of https://github.com/json-iterator/go.git synced 2025-03-23 21:09:11 +02:00

Marshal comment

This commit is contained in:
nifei 2017-06-05 19:14:40 +08:00
parent d97f5db769
commit c69b61f879

View File

@ -82,8 +82,8 @@ func UnmarshalAnyFromString(str string) (Any, error) {
}
// jsoniterator.Marshal is an adapter to json.Marshal
// Marshal returns the JSON encoding of v, adapts to json/encoding API
//
// Marshal returns the JSON encoding of v, adapts to json/encoding Marshal API
func Marshal(v interface{}) ([]byte, error) {
buf := &bytes.Buffer{}