summaryrefslogtreecommitdiff
path: root/src/shared/reboot-util.h
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2020-08-20 11:23:26 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2020-08-20 17:45:32 +0200
commit2aed63f4277a9712bb5d51bd1eb6acc1ae1e2456 (patch)
treec5b9ba498ea6c3ff3836394920834896bfc795f6 /src/shared/reboot-util.h
parentbb5a34fb3eeef824afe02b679d391853244161b1 (diff)
downloadsystemd-2aed63f4277a9712bb5d51bd1eb6acc1ae1e2456.tar.gz
tree-wide: fix spelling of "fallback"
Similarly to "setup" vs. "set up", "fallback" is a noun, and "fall back" is the verb. (This is pretty clear when we construct a sentence in the present continous: "we are falling back" not "we are fallbacking").
Diffstat (limited to 'src/shared/reboot-util.h')
-rw-r--r--src/shared/reboot-util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/reboot-util.h b/src/shared/reboot-util.h
index 5aeb34821f..1e98ee1dba 100644
--- a/src/shared/reboot-util.h
+++ b/src/shared/reboot-util.h
@@ -6,7 +6,7 @@ int update_reboot_parameter_and_warn(const char *parameter, bool keep);
typedef enum RebootFlags {
REBOOT_LOG = 1 << 0, /* log about what we are going to do and all errors */
REBOOT_DRY_RUN = 1 << 1, /* return 0 right before actually doing the reboot */
- REBOOT_FALLBACK = 1 << 2, /* fallback to plain reboot() if argument-based reboot doesn't work, isn't configured or doesn't apply otherwise */
+ REBOOT_FALLBACK = 1 << 2, /* fall back to plain reboot() if argument-based reboot doesn't work, isn't configured or doesn't apply otherwise */
} RebootFlags;
int read_reboot_parameter(char **parameter);