Update README.md

This commit is contained in:
Syntriax 2020-10-28 20:22:37 +03:00 committed by GitHub
parent c3bb921c1f
commit a92b2fe91a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -1,13 +1,13 @@
# Configuration Parser
Very simple, Header-only, key-value pair parser and generator.
Very simple, Header-only, Key-Value pair Parser and Generator.
To change the default assigner "=" there's a define named CONFIG_ASSIGNER in ConfigReader.h (33).
```C
```C++
#define CONFIG_ASSIGNER "="
```
#### Example
```C
```C++
#include <iostream>
#include "ConfigurationParser.h"