summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2017-08-24 09:17:03 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2017-08-24 14:50:07 +0000
commit40b3468782dec83d8346e2e78a958a1b5f01dc21 (patch)
tree2f865c67fa5f1c6af76d1462a2c214781f3de59d
parent5276f816eacc1dc655833d5603556ed64c9d48c5 (diff)
downloadbubblewrap-40b3468782dec83d8346e2e78a958a1b5f01dc21.tar.gz
main: Fix typo, tweak command line argument descriptions
I saw a typo `Custon`, and while here did a quick pass and cleaned a few other things up a bit. Closes: #211 Approved by: jlebon
-rw-r--r--bubblewrap.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/bubblewrap.c b/bubblewrap.c
index bb61d86..2519d47 100644
--- a/bubblewrap.c
+++ b/bubblewrap.c
@@ -186,7 +186,7 @@ usage (int ecode, FILE *out)
fprintf (out,
" --help Print this help\n"
" --version Print version\n"
- " --args FD Parse nul-separated args from FD\n"
+ " --args FD Parse NUL-separated args from FD\n"
" --unshare-all Unshare every namespace we support by default\n"
" --share-net Retain the network namespace (can only combine with --unshare-all)\n"
" --unshare-user Create new user namespace (may be automatically implied if not setuid)\n"
@@ -198,7 +198,7 @@ usage (int ecode, FILE *out)
" --unshare-cgroup Create new cgroup namespace\n"
" --unshare-cgroup-try Create new cgroup namespace if possible else continue by skipping it\n"
" --uid UID Custom uid in the sandbox (requires --unshare-user)\n"
- " --gid GID Custon gid in the sandbox (requires --unshare-user)\n"
+ " --gid GID Custom gid in the sandbox (requires --unshare-user)\n"
" --hostname NAME Custom hostname in the sandbox (requires --unshare-uts)\n"
" --chdir DIR Change directory to DIR\n"
" --setenv VAR VALUE Set an environment variable\n"
@@ -208,15 +208,15 @@ usage (int ecode, FILE *out)
" --bind SRC DEST Bind mount the host path SRC on DEST\n"
" --dev-bind SRC DEST Bind mount the host path SRC on DEST, allowing device access\n"
" --ro-bind SRC DEST Bind mount the host path SRC readonly on DEST\n"
- " --remount-ro DEST Remount DEST as readonly, it doesn't recursively remount\n"
- " --exec-label LABEL Exec Label for the sandbox\n"
+ " --remount-ro DEST Remount DEST as readonly; does not recursively remount\n"
+ " --exec-label LABEL Exec label for the sandbox\n"
" --file-label LABEL File label for temporary sandbox content\n"
- " --proc DEST Mount procfs on DEST\n"
+ " --proc DEST Mount new procfs on DEST\n"
" --dev DEST Mount new dev on DEST\n"
" --tmpfs DEST Mount new tmpfs on DEST\n"
" --mqueue DEST Mount new mqueue on DEST\n"
" --dir DEST Create dir at DEST\n"
- " --file FD DEST Copy from FD to dest DEST\n"
+ " --file FD DEST Copy from FD to destination DEST\n"
" --bind-data FD DEST Copy from FD to file which is bind-mounted on DEST\n"
" --ro-bind-data FD DEST Copy from FD to file which is readonly bind-mounted on DEST\n"
" --symlink SRC DEST Create symlink at DEST with target SRC\n"