Skip to content

Commit 48b1859

Browse files
committed
Update README.md
- Fix grammar
1 parent fbb74c0 commit 48b1859

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
@@ -66,7 +66,7 @@ Link to `libArgengine_static.a` or `libArgengine.so`.
6666

6767
The basic principle is that for each option a lambda callback is added.
6868

69-
Valueless:
69+
A valueless callback:
7070

7171
```
7272
...
@@ -80,7 +80,7 @@ Valueless:
8080
...
8181
```
8282

83-
Single-value:
83+
A single-value callback:
8484

8585
```
8686
...
@@ -94,7 +94,7 @@ Single-value:
9494
...
9595
```
9696

97-
There can be as many option variants as liked, usually the short and long version e.g `-f` and `--foo`.
97+
There can be as many option variants as liked, usually the short and long versions, e.g `-f` and `--foo`.
9898

9999
`Argengine` doesn't care about the naming of the options and they can be anything: `-f`, `a`, `/c`, `foo`, `--foo` ...
100100

@@ -112,13 +112,13 @@ Positional arguments (for example a file name for a text editor after other opti
112112
...
113113
```
114114

115-
If callback for positional arguments is set, then no errors about `unknown options` will occur as all additional options will be taken as positional arguments.
115+
If the callback for positional arguments is set, then no errors about `unknown options` will occur as all additional options will be taken as positional arguments.
116116

117117
# Help
118118

119119
By default, `Argengine` will create a simple help that is shown with `-h` or `--help`.
120120

121-
Without any additional options possible output will look like this:
121+
Without any additional options a possible output will look like this:
122122

123123
```
124124
Usage: ./ex1 [OPTIONS]

0 commit comments

Comments
 (0)