Skip to content

Commit

Permalink
docs: fix simple typo, fale -> false (#1042)
Browse files Browse the repository at this point in the history
There is a small typo in src/options.c.

Should read `false` rather than `fale`.
  • Loading branch information
timgates42 authored Oct 12, 2020
1 parent b878abf commit e0fc1f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/options.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit e0fc1f4

Please sign in to comment.