1
0
mirror of https://github.com/taigrr/nats.docs synced 2025-01-18 04:03:23 -08:00

Fix typo in Golang client connection example

Fixed typo from "connectioConnection" to "connection"
This commit is contained in:
Aarush Ahuja 2020-03-19 02:37:03 +05:30 committed by GitHub
parent 388d3c047d
commit 2e4d041290
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 %}