Update README.md

This commit is contained in:
Pranav Srinivas Kumar 2019-04-01 12:04:13 -04:00 committed by GitHub
parent 11b3b30286
commit ecddddd519
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,7 +65,7 @@ program.add_argument("--verbose")
program.parse_args({ "./main", "--verbose" });
if (program["--verbose'] == true) {
if (program["--verbose"] == true) {
std::cout << "Verbosity enabled" << std::endl;
}
```