From ade0fc90f793c97554d26478432e779a7fa873b6 Mon Sep 17 00:00:00 2001 From: Eric Urban Date: Sun, 10 Aug 2014 20:42:52 -0500 Subject: [PATCH] Correct documentation, the "ReadJSON" function depends on "Unmarshal", not "Marshal" --- json.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/json.go b/json.go index ce8f00c..e0668f2 100644 --- a/json.go +++ b/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()