From e0fc1f4bc63180d8a40b74c461b8739b41b7bbd9 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 13 Oct 2020 04:08:14 +1100 Subject: [PATCH] docs: fix simple typo, fale -> false (#1042) There is a small typo in src/options.c. Should read `false` rather than `fale`. --- src/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/options.c b/src/options.c index 8ef8024d8..7b679df27 100644 --- a/src/options.c +++ b/src/options.c @@ -606,7 +606,7 @@ parse_option(struct option_info *option, const char *prefix, const char *arg) int *value = option->value; /* We try to parse it as a boolean (and set the - * value to 0 if fale), otherwise we parse it as + * value to 0 if false), otherwise we parse it as * an integer and use the given value. */ if (parse_bool(&enabled, arg) == SUCCESS) { if (!enabled) {