@@ -90,7 +90,7 @@ Single value:
9090 ...
9191```
9292
93- There can be as many argument variants as liked, usually the short and long version e.g ` -f ` and ` --foo ` .
93+ There can be as many option variants as liked, usually the short and long version e.g ` -f ` and ` --foo ` .
9494
9595` Argengine ` doesn't care about the naming of the options and they can be anything: ` -f ` , ` a ` , ` /c ` , ` foo ` , ` --foo ` ...
9696
@@ -155,7 +155,7 @@ The text printed before options can be set with:
155155Valueless options are options without any value, so they are just flags. The lambda callback is of the form ` [] {} ` .
156156
157157```
158- #include "`Argengine` .hpp"
158+ #include "argengine .hpp"
159159#include <iostream>
160160
161161int main(int argc, char ** argv)
@@ -181,7 +181,7 @@ Preferably there should be either space or '`=`'. The spaceless format is accept
181181The lambda callback is of the form ` [] (std::string value) {} ` .
182182
183183```
184- #include "`Argengine` .hpp"
184+ #include "argengine .hpp"
185185#include <iostream>
186186
187187int main(int argc, char ** argv)
@@ -238,10 +238,10 @@ Example of handling error values:
238238
239239```
240240 ...
241- ` Argengine` ::Error error;
241+ Argengine::Error error;
242242 ae.parse(error);
243243
244- if (error.code != ` Argengine` ::Error::Code::Ok) {
244+ if (error.code != Argengine::Error::Code::Ok) {
245245 std::cerr << error.message << std::endl
246246 << std::endl;
247247 ae.printHelp();
0 commit comments