From bf3f582740003699cea4b5233dfb45ab3c0737fa Mon Sep 17 00:00:00 2001 From: Pranav Srinivas Kumar Date: Tue, 9 Apr 2019 14:55:08 -0400 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5197ee9..e1953fc 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ Verbosity enabled Here's what's happening: * The program is written so as to display something when --verbose is specified and display nothing when not. -* To show that the option is actually optional, there is no error when running the program without it. Note that by using ```.default_value(false)```, if the optional argument isn’t used, it's value is automatically set to false. +* Since the argument is actually optional, no error is thrown when running the program without ```--verbose```. Note that by using ```.default_value(false)```, if the optional argument isn’t used, it's value is automatically set to false. * By using ```.implicit_value(true)```, the user specifies that this option is more of a flag than something that requires a value. When the user provides the --verbose option, it's value is set to true. ### Combining Positional and Optional Arguments