diff options
author | bnewbold <bnewbold@robocracy.org> | 2016-10-15 00:28:36 -0700 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2016-10-15 00:28:36 -0700 |
commit | b48e412eb2111fd3b24bcac991c77c41ef240627 (patch) | |
tree | 503b5f88e35e718bc9e038a6af05614557c05deb | |
parent | 4a6d12ee6a81c12b0b0d513a63ad6f531a9a283e (diff) | |
download | einhyrningsins-b48e412eb2111fd3b24bcac991c77c41ef240627.tar.gz einhyrningsins-b48e412eb2111fd3b24bcac991c77c41ef240627.zip |
fix options text
-rw-r--r-- | src/main.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs index 65f1c68..8b2ef85 100644 --- a/src/main.rs +++ b/src/main.rs @@ -484,9 +484,9 @@ fn main() { opts.optflag("m", "manual", "manual (explicit) acknowledge mode"); opts.optopt("n", "number", "how many program copies to spawn", "COUNT"); opts.optmulti("b", "bind", "socket(s) to bind to (can be repeated)", "ADDR"); - opts.optmulti("", "drop-env-var", "ENV variables to mask (can be repeated)", "ADDR"); - opts.optopt("d", "socket-path", "where to look for control socket (default: /tmp/einhorn.sock)", "PATH"); - opts.optopt("r", "retries", "how many times to attempt spawning", "RETRIES"); + opts.optmulti("", "drop-env-var", "ENV variables to mask (can be repeated)", "VAR"); + opts.optopt("d", "socket-path", "where to create the control socket (default: /tmp/einhorn.sock)", "PATH"); + opts.optopt("r", "retries", "how many times to attempt spawning", "COUNT"); let matches = match opts.parse(&args[1..]) { Ok(m) => m, |