From b0ca6d590325a42c870a8511ad2d0c0c11f627ba Mon Sep 17 00:00:00 2001 From: "John C. Vernaleo" Date: Thu, 15 Aug 2013 10:15:25 -0400 Subject: [PATCH] Fix typo in comment. --- jsonfxns.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsonfxns.go b/jsonfxns.go index ccee3661..cc323879 100644 --- a/jsonfxns.go +++ b/jsonfxns.go @@ -46,7 +46,7 @@ func jsonRpcSend(user string, password string, server string, message []byte) (* } // GetRaw should be called after JsonRpcSend. It reads and returns -// the reply (which you can then call readResult() on) and closes the +// the reply (which you can then call ReadResultCmd() on) and closes the // connection. func GetRaw(resp io.ReadCloser) ([]byte, error) { body, err := ioutil.ReadAll(resp)