summaryrefslogtreecommitdiff
path: root/tools/command.c
diff options
context:
space:
mode:
authorSamanta Navarro <ferivoz@riseup.net>2020-10-03 11:52:37 +0000
committerZdenek Kabelac <zkabelac@redhat.com>2021-03-30 13:08:14 +0200
commit01d5e4d1ca27b5dbf4dce19be3da2ab83cefd40d (patch)
tree9092e959410e673140c79c81a5e37568f9da43b9 /tools/command.c
parentd5b0c72f40abc8caa199a0f484a9a0223f4a03dc (diff)
downloadlvm2-01d5e4d1ca27b5dbf4dce19be3da2ab83cefd40d.tar.gz
all: fix typos
Diffstat (limited to 'tools/command.c')
-rw-r--r--tools/command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/command.c b/tools/command.c
index bb707d66f..38b11b8eb 100644
--- a/tools/command.c
+++ b/tools/command.c
@@ -1650,14 +1650,14 @@ int define_commands(struct cmd_context *cmdtool, const char *run_name)
*
* This function overrides default opt_names[] entries at run time according
* to the command name, adjusting the value types accepted by various options.
- * So, for lvresize, opt_names[sizemb_VAL] is overriden to accept
+ * So, for lvresize, opt_names[sizemb_VAL] is overridden to accept
* the relative (+ or -) value type ssizemb_VAL, instead of the default
* sizemb_VAL. This way, when lvresize processes the --size value, it
* will use the ssize_mb_arg() function which accepts relative size values.
* When lvcreate processes the --size value, it uses size_mb_arg() which
* rejects signed values.
*
- * The command defs in commands[] do not need to be overriden because
+ * The command defs in commands[] do not need to be overridden because
* the command-lines.in defs have the context of a command, and are
* described using the proper value type, e.g. this cmd def already
* uses the relative size value: "lvresize --size SSizeMB LV",