ci: fix misspellings

This commit is contained in:
Joschua Kesper 2024-05-26 22:16:01 +02:00
parent 50868caece
commit 85b6e63f4f
No known key found for this signature in database
GPG key ID: E683C3A5BC5C8BF9
3 changed files with 4 additions and 4 deletions

View file

@ -2868,7 +2868,7 @@ parse_config_file(FILE *f, struct config *conf, const char *path, bool errors_ar
errno = 0;
}
/* Set `alpha_non_whitespace` to atleast `alpha`. */
/* Set `alpha_non_whitespace` to at least `alpha`. */
conf->colors.alpha_non_whitespace = max(conf->colors.alpha_non_whitespace, conf->colors.alpha);
if (errno != 0) {
@ -3111,7 +3111,7 @@ config_load(struct config *conf, const char *conf_path,
.alpha = 0xffff,
/* HACK:
* when `alpha_non_whitespace` is not set its
* default value will be `alpha`. This is achived via
* default value will be `alpha`. This is achieved via
* restricting it to be at least the value of `alpha`
*/
.alpha_non_whitespace = 0x0000,