flatpak ps: Fix typo in error message

Closes: #2034
Approved by: alexlarsson
This commit is contained in:
AsciiWolf
2018-08-28 12:10:30 +02:00
committed by Atomic Bot
parent e8d62a3aba
commit 29f7393e43

View File

@@ -94,7 +94,7 @@ find_column (const char *name,
if (candidate >= 0)
return candidate;
g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, _("Unknown colum: %s"), name);
g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, _("Unknown column: %s"), name);
return -1;
}