From 6584233c722379d86da10e4ea45467a3a56bb036 Mon Sep 17 00:00:00 2001 From: Jan Willamowius Date: Sat, 17 Jul 2021 08:35:44 +0200 Subject: [PATCH] fix English grammar --- mysqltuner.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mysqltuner.pl b/mysqltuner.pl index f43e39e..42077a2 100755 --- a/mysqltuner.pl +++ b/mysqltuner.pl @@ -1360,14 +1360,14 @@ sub log_file_recommendations { if ( $nbWarnLog > 0 ) { badprint "$myvar{'log_error'} contains $nbWarnLog warning(s)."; push @generalrec, - "Control warning line(s) into $myvar{'log_error'} file"; + "Check warning line(s) in $myvar{'log_error'} file"; } else { goodprint "$myvar{'log_error'} doesn't contain any warning."; } if ( $nbErrLog > 0 ) { badprint "$myvar{'log_error'} contains $nbErrLog error(s)."; - push @generalrec, "Control error line(s) into $myvar{'log_error'} file"; + push @generalrec, "Check error line(s) in $myvar{'log_error'} file"; } else { goodprint "$myvar{'log_error'} doesn't contain any error.";