From 5131b5e39057b28d8e7f58805dfd63b71fbe9cb7 Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Fri, 17 Apr 2015 11:14:00 -0400 Subject: [PATCH] Fix a typo. --- btcjson/v2/btcjson/jsonrpc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/btcjson/v2/btcjson/jsonrpc.go b/btcjson/v2/btcjson/jsonrpc.go index f356b0e3..59ae3e1e 100644 --- a/btcjson/v2/btcjson/jsonrpc.go +++ b/btcjson/v2/btcjson/jsonrpc.go @@ -44,7 +44,7 @@ func NewRPCError(code RPCErrorCode, message string) *RPCError { // requests, responses, or notifications) is valid. JSON-RPC 1.0 allows any // valid JSON type. JSON-RPC 2.0 (which bitcoind follows for some parts) only // allows string, number, or null, so this function restricts the allowed types -// to that list. This funciton is only provided in case the caller is manually +// to that list. This function is only provided in case the caller is manually // marshalling for some reason. The functions which accept an ID in this // package already call this function to ensure the provided id is valid. func IsValidIDType(id interface{}) bool {