From 5313584421bed8472bdfac1e6b7b10f68c923829 Mon Sep 17 00:00:00 2001 From: igoso <8018236+igoso@users.noreply.github.com> Date: Mon, 8 Mar 2021 09:47:28 +0800 Subject: [PATCH] fix MySQL spell as MySQl to MySQL --- client/auth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/auth.go b/client/auth.go index 566d52dd9..954c88b67 100644 --- a/client/auth.go +++ b/client/auth.go @@ -106,7 +106,7 @@ func (c *Conn) readInitialHandshake() error { // generate auth response data according to auth plugin // // NOTE: the returned boolean value indicates whether to add a \NUL to the end of data. -// it is quite tricky because MySQl server expects different formats of responses in different auth situations. +// it is quite tricky because MySQL server expects different formats of responses in different auth situations. // here the \NUL needs to be added when sending back the empty password or cleartext password in 'sha256_password' // authentication. func (c *Conn) genAuthResponse(authData []byte) ([]byte, bool, error) {