summaryrefslogtreecommitdiff
path: root/storage/myisam
diff options
context:
space:
mode:
authorOtto Kekäläinen <otto@kekalainen.net>2020-12-20 21:07:38 +0200
committerDaniel Black <daniel@mariadb.org>2021-03-22 18:10:39 +1100
commitcebf9ee2040195a61fbed32d06cc2e335e9f8dfd (patch)
tree99068da2237fbb33ad57ab920e70332b3832b565 /storage/myisam
parente7ddf46632db84f55af85cd4f401d59c6ab29242 (diff)
downloadmariadb-git-cebf9ee2040195a61fbed32d06cc2e335e9f8dfd.tar.gz
Fix various spelling errors still found in code
Reseting -> Resetting Unknow -> Unknown capabilites -> capabilities choosen -> chosen direcory -> directory informations -> information openned -> opened refered -> referred to access -> one to access missmatch -> mismatch succesfully -> successfully dont -> don't
Diffstat (limited to 'storage/myisam')
-rw-r--r--storage/myisam/mi_open.c2
-rw-r--r--storage/myisam/myisamchk.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/storage/myisam/mi_open.c b/storage/myisam/mi_open.c
index cca2afa0b03..3db424ea997 100644
--- a/storage/myisam/mi_open.c
+++ b/storage/myisam/mi_open.c
@@ -180,7 +180,7 @@ MI_INFO *mi_open(const char *name, int mode, uint open_flags)
if ((share->options & HA_OPTION_RELIES_ON_SQL_LAYER) &&
! (open_flags & HA_OPEN_FROM_SQL_LAYER))
{
- DBUG_PRINT("error", ("table cannot be openned from non-sql layer"));
+ DBUG_PRINT("error", ("table cannot be opened from non-sql layer"));
my_errno= HA_ERR_UNSUPPORTED;
goto err;
}
diff --git a/storage/myisam/myisamchk.c b/storage/myisam/myisamchk.c
index b18f23dacb8..4344ce11420 100644
--- a/storage/myisam/myisamchk.c
+++ b/storage/myisam/myisamchk.c
@@ -429,7 +429,7 @@ static void usage(void)
-q, --quick Faster repair by not modifying the data file.\n\
One can give a second '-q' to force myisamchk to\n\
modify the original datafile in case of duplicate keys.\n\
- NOTE: Tables where the data file is currupted can't be\n\
+ NOTE: Tables where the data file is corrupted can't be\n\
fixed with this option.\n\
-u, --unpack Unpack file packed with myisampack.\n\
");