From dc2fe40a3d9fe7749f340c6de5f4bef60c9a2df1 Mon Sep 17 00:00:00 2001
From: "John C. Vernaleo" <jcv@conformal.com>
Date: Mon, 12 Aug 2013 11:24:49 -0400
Subject: [PATCH] Fix comment typo noticed by jrick@

---
 jsonapi.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/jsonapi.go b/jsonapi.go
index 4811dca8..ebd47a17 100644
--- a/jsonapi.go
+++ b/jsonapi.go
@@ -796,7 +796,7 @@ func RpcCommand(user string, password string, server string, message []byte) (Re
 }
 
 // IsValidIdType checks that the Id field (which can go in any of the json
-// messages is valid.  json rpc 1.0 allows any (json) type, but we still need
+// messages) is valid.  json rpc 1.0 allows any (json) type, but we still need
 // to prevent values that cannot be marshalled from going in.  json rpc 2.0
 // (which bitcoind follows for some parts) only allows string, number, or null,
 // so we restrict to that list.  Ths is only necessary if you manually marshal