Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/miloyip/rapidjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilo Yip <miloyip@gmail.com>2014-06-27 10:02:20 +0400
committerMilo Yip <miloyip@gmail.com>2014-06-27 10:02:20 +0400
commitfbf29dfc524d3aaaf42f3d9ef6a6a21286ec931c (patch)
treeb1aabee86908a8827456ea7c261007ed8c0b2da8 /readme.md
parentb429a82a1a1860b46da1a942381468b3e081c452 (diff)
Update readme.md
minor mistake
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/readme.md b/readme.md
index bebeee7c..894fb440 100644
--- a/readme.md
+++ b/readme.md
@@ -16,7 +16,7 @@ Rapidjson is a JSON parser and generator for C++. It was inspired by [rapidxml](
* Rapidjson is memory friendly. Each JSON value occupies exactly 16/20 bytes for most 32/64-bit machines (excluding text string). By default it uses a fast memory allocator, and the parser allocates memory compactly during parsing.
-* Rapidjson is Unicode friendly. It supports UTF-8, UTF-16, UTF-32 (LE & BE), and their detection, validataton and transcoding internally. For example, you can read a UTF-8 file and let rapidjson transcode the JSON strings into UTF-16 into DOM. It also supports surrogates and "\u0000" (null character).
+* Rapidjson is Unicode friendly. It supports UTF-8, UTF-16, UTF-32 (LE & BE), and their detection, validataton and transcoding internally. For example, you can read a UTF-8 file and let rapidjson transcode the JSON strings into UTF-16 in the DOM. It also supports surrogates and "\u0000" (null character).
For the full features please refer to the user guide.