From 648e6317bb20f5fac32c717f393da7d69c40bdf7 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Mon, 13 May 2013 13:21:01 -0500 Subject: [PATCH] Fix comment typo -- implimented -> implemented. --- jsonapi.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsonapi.go b/jsonapi.go index 2f7b0a06..853b78e9 100644 --- a/jsonapi.go +++ b/jsonapi.go @@ -19,7 +19,7 @@ type Message struct { // Reply is the general form of the reply from the bitcoin client. // The form of the Result part varies from one command to the next so it -// is currently implimented as an interface. +// is currently implemented as an interface. type Reply struct { Result interface{} `json:"result"` Error *Error `json:"error"`