Skip to content

Commit

Permalink
fix typo in config.c
Browse files Browse the repository at this point in the history
  • Loading branch information
Polkorny authored Nov 22, 2024
1 parent 48131cc commit c5186f5
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
Expand Up @@ -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;
Expand Down

0 comments on commit c5186f5

Please sign in to comment.