Merge pull request #12 from 29decibel/master

fix typo in ReadJSON deprecated comments
This commit is contained in:
Gary Burd 2013-12-23 11:42:01 -08:00
commit 7274f97ac5
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ func (c *Conn) WriteJSON(v interface{}) error {
return err2
}
// DEPRECATED: use c.WriteJSON instead.
// DEPRECATED: use c.ReadJSON instead.
func ReadJSON(c *Conn, v interface{}) error {
return c.ReadJSON(v)
}