From aed031c3a3f20948978dda9c6a3933d254140969 Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Thu, 11 May 2023 04:15:54 +0200 Subject: [PATCH] Fix typo --- src/Core/MySQL/Authentication.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/MySQL/Authentication.cpp b/src/Core/MySQL/Authentication.cpp index e6de8c38905..2c10bd88722 100644 --- a/src/Core/MySQL/Authentication.cpp +++ b/src/Core/MySQL/Authentication.cpp @@ -31,7 +31,7 @@ namespace Authentication static const size_t SCRAMBLE_LENGTH = 20; /** Generate a random string using ASCII characters but avoid separator character, - * produce pseudo random numbers between with about 7 bit worth of entropty between 1-127. + * produce pseudo random numbers between with about 7 bit worth of entropy between 1-127. * https://github.com/mysql/mysql-server/blob/8.0/mysys/crypt_genhash_impl.cc#L427 */ static String generateScramble()