aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorclyne <clyne@bitgloo.com>2021-02-10 08:00:44 -0500
committerGitHub <noreply@github.com>2021-02-10 08:00:44 -0500
commit94473754b37c04e1affbccf56d5df42546a54bb7 (patch)
tree3375007a9d355ae547280900b43f6c47af7ceaae
parent699656e05be8d594e7fe2663af8ecbc46bfb96e4 (diff)
Update README.mdHEADmaster
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 2aae128..597e087 100644
--- a/README.md
+++ b/README.md
@@ -5,9 +5,9 @@ A single-header library that converts INI-formatted string literals to a key-val
Requires C++20; tested on gcc 10.1 and clang trunk. Passes `-Wall -Wextra -pedantic`.
## Features
- * Direct accesses to values are compile-time evaluated, allowing an INI config to replace a list of macros or `constexpr` globals.
+ * Direct accesses to values are compile-time evaluated, allowing an INI config to be used for project/program configuration.
* Values can be accessed as strings, integers, or floating-point numbers.
- * Run-time support includes key lookup, iteration through the key-value list, or key existance checking; all of which can be filtered by section.
+ * Run-time support includes key lookup, iteration through the key-value list, and key existance checking; all of which can be filtered by section.
[Try it on Godbolt.](https://godbolt.org/z/Ys1o9G)