From 2e4d041290f0046ea51c949eeeca6d26eab93404 Mon Sep 17 00:00:00 2001 From: Aarush Ahuja Date: Thu, 19 Mar 2020 02:37:03 +0530 Subject: [PATCH] Fix typo in Golang client connection example Fixed typo from "connectioConnection" to "connection" --- developing-with-nats/connecting/specific_server.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developing-with-nats/connecting/specific_server.md b/developing-with-nats/connecting/specific_server.md index ee6ea2b..c0bcc1e 100644 --- a/developing-with-nats/connecting/specific_server.md +++ b/developing-with-nats/connecting/specific_server.md @@ -19,7 +19,7 @@ if err != nil { } defer nc.Close() -// Do something with the connectioConnection nc = Nats.connect("nats://demo.nats.io:4222"); +// Do something with the connection nc = Nats.connect("nats://demo.nats.io:4222"); ``` {% endtab %}