From 21b974e2715f48e36dbcb759314dfe96cdfb094d Mon Sep 17 00:00:00 2001 From: "John C. Vernaleo" Date: Thu, 20 Feb 2014 10:51:15 -0500 Subject: [PATCH] Fix missing ) in comment. --- jsonapi.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsonapi.go b/jsonapi.go index cef28ab0..9a1494fb 100644 --- a/jsonapi.go +++ b/jsonapi.go @@ -1171,7 +1171,7 @@ func IsValidIdType(id interface{}) bool { // JSONToAmount Safely converts a floating point value to an int. // Clearly not all floating point numbers can be converted to ints (there -// is no one-to-one mapping, but bitcoin's json api returns most numbers as +// is no one-to-one mapping), but bitcoin's json api returns most numbers as // floats which are not safe to use when handling money. Since bitcoins can // only be divided in a limited way, this methods works for the amounts returned // by the json api. It is not for general use.