From edca3cbe44ffbdcb68e040b851f507a35d0b90ce Mon Sep 17 00:00:00 2001 From: James Shubin Date: Fri, 20 May 2016 13:19:09 -0400 Subject: [PATCH] clientv3: Fix typos Found randomly when going through docs. HTH --- clientv3/client.go | 4 ++-- clientv3/config.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/clientv3/client.go b/clientv3/client.go index 3df10272d..0721b8b06 100644 --- a/clientv3/client.go +++ b/clientv3/client.go @@ -66,9 +66,9 @@ type Client struct { newconnc chan struct{} lastConnErr error - // Username is a username of authentication + // Username is a username for authentication Username string - // Password is a password of authentication + // Password is a password for authentication Password string } diff --git a/clientv3/config.go b/clientv3/config.go index d2f73c390..aecbbd9af 100644 --- a/clientv3/config.go +++ b/clientv3/config.go @@ -44,10 +44,10 @@ type Config struct { // Logger is the logger used by client library. Logger Logger - // Username is a username of authentication + // Username is a username for authentication Username string - // Password is a password of authentication + // Password is a password for authentication Password string }