Skip to content

Commit

Permalink
fix typo in config.c (#601)
Browse files Browse the repository at this point in the history
Polkorny authored Nov 23, 2024
1 parent 48131cc commit 6cae82d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.c
Original file line number Diff line number Diff line change
@@ -296,7 +296,7 @@ bool validate_config(struct config_params *p, struct error_s *error) {
}
if (strcmp(orientation, "horizontal") == 0) {
if (p->output != OUTPUT_NONCURSES) {
write_errorf(error, "only noncurses output suports horizontal orientation\n");
write_errorf(error, "only noncurses output supports horizontal orientation\n");
return false;
}
p->orientation = ORIENT_SPLIT_H;

0 comments on commit 6cae82d

Please sign in to comment.