From e06890af97ac9a398e0995d7c640038b27c045a2 Mon Sep 17 00:00:00 2001 From: Pranav Date: Sun, 1 Dec 2019 16:56:19 -0600 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 14d6654..28dc611 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,7 @@ program.add_argument("-o", "--output") #### Accessing optional arguments without default values -If you do not require an optional argument to present but has no good default value for it, you can combine testing and accessing the argument as following: +If you require an optional argument to be present but have no good default value for it, you can combine testing and accessing the argument as following: ```cpp if (auto fn = program.present("-o")) {