Skip to content

Commit 4448893

Browse files
committed
Update README.md
1 parent c0a36e6 commit 4448893

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Basic usage of the library includes two steps:
2525

2626
The library is suitable for both *post-validation* and *pre-validation*. *Post-validation* stands for validating the object that is already populated with the data. *Pre-validation* stands for validating the data before writing it to the object. The same validator declaration can be used in both cases.
2727

28-
There are a lot of options for validator extension and customization. During validation a text report describing an error can be constructed. Reports can be widely customised and translated to supported languages.
28+
There are a lot of options for `cpp-validator` extension and customization. During validation a text report describing an error can be constructed. Reports can be widely customised and translated to supported languages.
2929

3030
The library was tested with *Clang*, *GCC* and *MSVC* compilers that support *C\++14* or *C\++17* standards. Tested operating systems include *Linux*, *Windows*, *macOS*, *iOS* and *Android* platforms.
3131

@@ -35,7 +35,7 @@ For more details see [Documentation](docs/index.md).
3535

3636
### Check if value is greater than constant
3737

38-
Error as argument.
38+
Error as an argument.
3939

4040
```cpp
4141
// define validator
@@ -57,7 +57,7 @@ if (!err)
5757
}
5858
```
5959
60-
Error as exception.
60+
Error as an exception.
6161
6262
```cpp
6363
// define validator
@@ -272,7 +272,7 @@ struct Foo
272272
DRACOSHA_VALIDATOR_PROPERTY(bar_value);
273273
DRACOSHA_VALIDATOR_PROPERTY(other_value);
274274

275-
// template specialization for setting bar_value member of Foo type
275+
// template specialization for setting bar_value member of Foo
276276
DRACOSHA_VALIDATOR_NAMESPACE_BEGIN
277277

278278
template <>

0 commit comments

Comments
 (0)