summaryrefslogtreecommitdiffstats
path: root/vendor/clap/examples/tutorial_derive/03_01_flag_bool.md
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/clap/examples/tutorial_derive/03_01_flag_bool.md')
-rw-r--r--vendor/clap/examples/tutorial_derive/03_01_flag_bool.md23
1 files changed, 0 insertions, 23 deletions
diff --git a/vendor/clap/examples/tutorial_derive/03_01_flag_bool.md b/vendor/clap/examples/tutorial_derive/03_01_flag_bool.md
deleted file mode 100644
index 0baaa10ca..000000000
--- a/vendor/clap/examples/tutorial_derive/03_01_flag_bool.md
+++ /dev/null
@@ -1,23 +0,0 @@
-```console
-$ 03_01_flag_bool_derive --help
-clap [..]
-A simple to use, efficient, and full-featured Command Line Argument Parser
-
-USAGE:
- 03_01_flag_bool_derive[EXE] [OPTIONS]
-
-OPTIONS:
- -h, --help Print help information
- -v, --verbose
- -V, --version Print version information
-
-$ 03_01_flag_bool_derive
-verbose: false
-
-$ 03_01_flag_bool_derive --verbose
-verbose: true
-
-$ 03_01_flag_bool_derive --verbose --verbose
-verbose: true
-
-```