فهرست منبع

Merge pull request #38 from hydrogen18/master

Correct documentation of "ReadJSON"
Gary Burd 11 سال پیش
والد
کامیت
365b7a442d
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      json.go

+ 1 - 1
json.go

@@ -38,7 +38,7 @@ func ReadJSON(c *Conn, v interface{}) error {
 // ReadJSON reads the next JSON-encoded message from the connection and stores
 // it in the value pointed to by v.
 //
-// See the documentation for the encoding/json Marshal function for details
+// See the documentation for the encoding/json Unmarshal function for details
 // about the conversion of JSON to a Go value.
 func (c *Conn) ReadJSON(v interface{}) error {
 	_, r, err := c.NextReader()