summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAmen <kluverkamp@hotmail.com>2019-01-31 00:16:58 +0100
committerRyan Dahl <ry@tinyclouds.org>2019-01-30 19:51:44 -0500
commit0be9d1ff0e2d07df82698661265c28a75603b5fe (patch)
tree36ddab116e75eb490285fae58d363cf1e0f22975 /src
parent00597ffde1ebb05a6c60ea7e09e6578c11f92820 (diff)
nit: add missing dot when printing help
Diffstat (limited to 'src')
-rw-r--r--src/flags.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flags.rs b/src/flags.rs
index 970aceb3c..7a400319c 100644
--- a/src/flags.rs
+++ b/src/flags.rs
@@ -138,7 +138,7 @@ pub fn set_flags(
opts.optflag("", "allow-net", "Allow network access.");
opts.optflag("", "allow-env", "Allow environment access.");
opts.optflag("", "allow-run", "Allow running subprocesses.");
- opts.optflag("A", "allow-all", "Allow all permissions");
+ opts.optflag("A", "allow-all", "Allow all permissions.");
opts.optflag("", "recompile", "Force recompilation of TypeScript code.");
opts.optflag("h", "help", "Print this message.");
opts.optflag("D", "log-debug", "Log debug output.");