]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
commands/regexp: Fix typo
authorGlenn Washburn <development@efficientek.com>
Wed, 28 Jun 2023 10:10:07 +0000 (05:10 -0500)
committerDaniel Kiper <daniel.kiper@oracle.com>
Mon, 3 Jul 2023 12:10:01 +0000 (14:10 +0200)
Signed-off-by: Glenn Washburn <development@efficientek.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
grub-core/commands/regexp.c

index 612003f94c82b092bfb9f1608d656c39c7734e38..246af39f058bd908bea493ccbaaa095d5c26ce43 100644 (file)
@@ -36,7 +36,7 @@ static const struct grub_arg_option options[] =
         groups with parentheses. These groups are
         then numbered and you can save some of
         them in variables. In other programs
-        those components aree often referenced with
+        those components are often referenced with
         back slash, e.g. \1. Compare
         sed -e 's,\([a-z][a-z]*\),lowercase=\1,g'
         The whole matching component is saved in VARNAME, not its number.