diff options
Diffstat (limited to 'src/wine.c')
-rw-r--r-- | src/wine.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,11 +15,11 @@ #include "common.h" static const struct Command winecmd_commands[] = { - { .name = "download", .func = winecmd_download, .description = "download and extract a wine versions" }, + { .name = "download", .func = winecmd_download, .description = "download and extract a wine version" }, { .name = "env", .func = winecmd_env, .description = "add wine to your PATH in a POSIX shell"}, { .name = "env-fish", .func = winecmd_env, .description = "add wine to your PATH in the fish shell"}, { .name = "list", .func = winecmd_list, .description = "list installable wine versions" }, - { .name = "list-installed", .func = winecmd_installed, .description = "list already installed wine versions" }, + { .name = "installed", .func = winecmd_installed, .description = "list already installed wine versions" }, { .name = "remove", .func = winecmd_remove, .description = "remove a wine version" }, { .name = "run", .func = winecmd_run, .description = "run an installed wine version" }, }; |