bin/new: Use uppercase option arguments
authorTobias Bieniek <tobias.bieniek@gmx.de>
Wed, 19 Aug 2015 08:49:50 +0000 (10:49 +0200)
committerTobias Bieniek <tobias.bieniek@gmx.de>
Wed, 19 Aug 2015 08:49:50 +0000 (10:49 +0200)
Every other command except for `cargo new` is using <argument> for positional
arguments and ARG for option arguments.

src/bin/new.rs

index 0c6864448e81c9decd585c1eaa38459827a65272..ee53ebe8cb8ab404111132ac4dda1034e98ca0e2 100644 (file)
@@ -23,11 +23,11 @@ Usage:
 
 Options:
     -h, --help          Print this message
-    --vcs <vcs>         Initialize a new repository for the given version
+    --vcs VCS           Initialize a new repository for the given version
                         control system (git or hg) or do not initialize any version
                         control at all (none) overriding a global configuration.
     --bin               Use a binary instead of a library template
-    --name <name>       Set the resulting package name
+    --name NAME         Set the resulting package name
     -v, --verbose       Use verbose output
     -q, --quiet         No output printed to stdout
     --color WHEN        Coloring: auto, always, never