diff options
author | Jan200101 <sentrycraft123@gmail.com> | 2020-12-07 11:04:21 +0100 |
---|---|---|
committer | Jan200101 <sentrycraft123@gmail.com> | 2020-12-07 11:04:21 +0100 |
commit | 3b3d30aedf3d8762558e9aef846ca94dc492fa96 (patch) | |
tree | 6a2c5f5892f8a2951fa304958e637521b007150d /src/wine.c | |
parent | bd2b8b26aa6052b156b256d55b24d7f7c3d57796 (diff) | |
download | polecat-3b3d30aedf3d8762558e9aef846ca94dc492fa96.tar.gz polecat-3b3d30aedf3d8762558e9aef846ca94dc492fa96.zip |
improve grammar in descriptions, add newline to wine check warning
Diffstat (limited to 'src/wine.c')
-rw-r--r-- | src/wine.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -19,11 +19,11 @@ const static struct Command wine_commands[] = { - { .name = "download", .func = wine_download, .description = "download and extract a wine version from lutris" }, + { .name = "download", .func = wine_download, .description = "download and extract a wine version" }, { .name = "list", .func = wine_list, .description = "list installable wine versions" }, - { .name = "run", .func = wine_run, .description = "run a installed wine version" }, - { .name = "list-installed", .func = wine_installed, .description = "list installed wine versions" }, - { .name = "env", .func = wine_env, .description = "add a wine executable to your PATH"}, + { .name = "run", .func = wine_run, .description = "run an installed wine version" }, + { .name = "list-installed", .func = wine_installed, .description = "list already installed wine versions" }, + { .name = "env", .func = wine_env, .description = "add wine to your PATH in a POSIX shell"}, }; int wine(int argc, char** argv) @@ -166,7 +166,7 @@ int wine_run(int argc, char** argv) default: #ifdef DEBUG - fprintf(stderr, "Couldn't find figure out if this `%s' is Wine or Proton, defaulting to Wine", winever); + fprintf(stderr, "Couldn't find figure out if this `%s' is Wine or Proton, defaulting to Wine\n", winever); #endif winebinloc = WINEBIN; break; |