diff options
author | Jan200101 <sentrycraft123@gmail.com> | 2022-04-19 12:05:28 +0200 |
---|---|---|
committer | Jan200101 <sentrycraft123@gmail.com> | 2022-04-19 12:05:28 +0200 |
commit | 4785be414a4d2d06992fdcb96cba453be3267bc0 (patch) | |
tree | 49f6733892465c3fa083e183306485b26fa036f2 /src/wine.c | |
parent | 48b21b73d2cafca5a146546191972217b452a799 (diff) | |
download | polecat-4785be414a4d2d06992fdcb96cba453be3267bc0.tar.gz polecat-4785be414a4d2d06992fdcb96cba453be3267bc0.zip |
improve grammar, concat lutris search arguments, patch leaking memory
Diffstat (limited to 'src/wine.c')
-rw-r--r-- | src/wine.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,8 +18,8 @@ static const struct Command winecmd_commands[] = { { .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 = "installed", .func = winecmd_installed, .description = "list already installed wine versions" }, + { .name = "list", .func = winecmd_list, .description = "list available wine versions" }, + { .name = "installed", .func = winecmd_installed, .description = "list installed wine versions" }, { .name = "remove", .func = winecmd_remove, .description = "remove a wine version" }, { .name = "run", .func = winecmd_run, .description = "run an installed wine version" }, }; |