Skip to content

Commit 452ecd2

Browse files
authored
Update README.md
1 parent 53aba65 commit 452ecd2

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
@@ -6,7 +6,7 @@
66
[![Coverage](https://img.shields.io/coveralls/taocpp/json.svg)](https://coveralls.io/github/taocpp/json)
77
[![Issues](https://img.shields.io/github/issues/taocpp/json.svg)](https://github.com/taocpp/json/issues)
88

9-
The Art of C++ / JSON is a zero-dependency C++11 header-only library that provides a generic JSON value object, conversions from and to JSON string representation as well as support for JSON Pointer and JSON Patch. It is designed for correctness and simplicity, and strives for speed through minimalism (rather than complicated optimisations).
9+
The Art of C++ / JSON is a zero-dependency C++11 header-only library that provides a generic JSON value object, conversions from and to JSON string representation, and supports JSON Pointer and JSON Patch. It is designed for correctness and simplicity, is based on C++ standard containers, and strives for speed through minimalism (rather than complicated optimisations).
1010

1111
## Features
1212

@@ -21,10 +21,10 @@ The Art of C++ / JSON is a zero-dependency C++11 header-only library that provid
2121

2222
* General
2323

24-
* Provides **DOM** and **SAX** APIs.
25-
* Numeric values are handled as `std::int64_t`, `std::uint64_t` or `double` internally.
26-
* Does *not* support duplicate keys in objects.
27-
* Currently only supports UTF-8.
24+
* Provides **DOM** and **SAX**-style APIs.
25+
* Numeric values are stored as `std::int64_t`, `std::uint64_t` or `double`.
26+
* Does *not* support duplicate keys in JSON objects.
27+
* Currently only supports UTF-8 as input and output encoding.
2828

2929
* DOM API (aka "The value class")
3030

0 commit comments

Comments
 (0)