[Window] Fix typo in error message (#1401)

This commit is contained in:
Tuure Piitulainen 2021-08-31 00:19:32 +03:00 committed by GitHub
parent 33d6f63a7a
commit efb74c73ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -883,7 +883,7 @@ static char *_get_display_value(const Mode *sw, unsigned int selected_line,
ModeModePrivateData *rmpd = mode_get_private_data(sw);
client *c = window_client(rmpd, rmpd->ids->array[selected_line]);
if (c == NULL) {
return get_entry ? g_strdup("Window has fanished") : NULL;
return get_entry ? g_strdup("Window has vanished") : NULL;
}
if (c->demands) {
*state |= URGENT;