diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | voidnsrun.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -23,7 +23,7 @@ should handle it. ## Usage ``` -voidnsrun [OPTIONS] [PROGRAM [ARGS]] +voidnsrun [OPTIONS] PROGRAM [ARGS] Options: -m <path>: add bind mount diff --git a/voidnsrun.c b/voidnsrun.c index c0db7c1..d35e97b 100644 --- a/voidnsrun.c +++ b/voidnsrun.c @@ -29,7 +29,7 @@ bool isdir(const char *s) void usage(const char *progname) { - printf("Usage: %s [OPTIONS] [PROGRAM [ARGS]]\n", progname); + printf("Usage: %s [OPTIONS] PROGRAM [ARGS]\n", progname); printf("\n" "Options:\n" " -m <path>: add bind mount\n" |