From cace9187d7973c7a797345f8c4dd4d340b69413b Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Sun, 9 Feb 2014 22:30:10 -0600 Subject: [PATCH] Correct typo in CmdGenerator comment. --- jsoncmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsoncmd.go b/jsoncmd.go index e8ffe687f..b966e23f4 100644 --- a/jsoncmd.go +++ b/jsoncmd.go @@ -53,7 +53,7 @@ func RegisterCustomCmd(method string, parser RawCmdParser, helpString string) { customCmds[method] = cmd{parser: parser, helpString: helpString} } -// CmdGenerator is a function that returns a new concerete Cmd of +// CmdGenerator is a function that returns a new concrete Cmd of // the appropriate type for a non-standard Bitcoin command. type CmdGenerator func() Cmd