Skip to content

Commit a0cad71

Browse files
committed
Update README.md
1 parent 2231008 commit a0cad71

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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:
155155
Valueless 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
161161
int main(int argc, char ** argv)
@@ -181,7 +181,7 @@ Preferably there should be either space or '`=`'. The spaceless format is accept
181181
The lambda callback is of the form `[] (std::string value) {}`.
182182

183183
```
184-
#include "`Argengine`.hpp"
184+
#include "argengine.hpp"
185185
#include <iostream>
186186
187187
int 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

Comments
 (0)