瀏覽代碼

link test

nifei 8 年之前
父節點
當前提交
10c1506f87
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      feature_adapter.go

+ 3 - 0
feature_adapter.go

@@ -8,6 +8,9 @@ import (
 // Unmarshal adapts to json/encoding Unmarshal API
 //
 // Unmarshal parses the JSON-encoded data and stores the result in the value pointed to by v.
+// <l>https://godoc.org/encoding/json#Unmarshal</l>
+// linktest: https://godoc.org/encoding/json#Unmarshal
+// <a href="https://godoc.org/encoding/json#Unmarshal">link test</a>
 func Unmarshal(data []byte, v interface{}) error {
 	data = data[:lastNotSpacePos(data)]
 	iter := ParseBytes(data)