From 267cf94edc7c84f03d67c5b79462d1aead0aaa32 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Sun, 11 May 2014 13:30:25 -0500 Subject: [PATCH] Correct typo in example log statement. --- examples/btcdwebsockets/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/btcdwebsockets/main.go b/examples/btcdwebsockets/main.go index 4d3efa088..b8123775d 100644 --- a/examples/btcdwebsockets/main.go +++ b/examples/btcdwebsockets/main.go @@ -66,7 +66,7 @@ func main() { time.AfterFunc(time.Second*10, func() { log.Println("Client shutting down...") client.Shutdown() - log.Println("Client shutting complete.") + log.Println("Client shutdown complete.") }) // Wait until the client either shuts down gracefully (or the user