소스 검색

Merge pull request #5420 from purpleidea/feat/typos2

Fix typos
Gyu-Ho Lee 10 년 전
부모
커밋
4c36054610
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 2 2
      clientv3/client.go
  2. 2 2
      clientv3/config.go

+ 2 - 2
clientv3/client.go

@@ -66,9 +66,9 @@ type Client struct {
 	newconnc    chan struct{}
 	newconnc    chan struct{}
 	lastConnErr error
 	lastConnErr error
 
 
-	// Username is a username of authentication
+	// Username is a username for authentication
 	Username string
 	Username string
-	// Password is a password of authentication
+	// Password is a password for authentication
 	Password string
 	Password string
 }
 }
 
 

+ 2 - 2
clientv3/config.go

@@ -44,10 +44,10 @@ type Config struct {
 	// Logger is the logger used by client library.
 	// Logger is the logger used by client library.
 	Logger Logger
 	Logger Logger
 
 
-	// Username is a username of authentication
+	// Username is a username for authentication
 	Username string
 	Username string
 
 
-	// Password is a password of authentication
+	// Password is a password for authentication
 	Password string
 	Password string
 }
 }