From 2173948e4188291006d48a95ee131f164a52bd2a Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Mon, 5 Jun 2017 08:16:30 -0400 Subject: [PATCH] Fix in example from @serge-sans-paille, closes #19 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 402d5efb..cc711499 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ To set up, add options, and run, your main function will look something like thi CLI::App app{"App description"}; std::string filename = "default"; -app.add_option("-f,--file", file, "A help string"); +app.add_option("-f,--file", filename, "A help string"); try { app.parse(argc, argv);