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-07-04 06:36:15 +0400
committerMilo Yip <miloyip@gmail.com>2014-07-04 06:36:15 +0400
commit99ea434eef9da265e4125e138476eb45971aa3a4 (patch)
tree01a49f79953199b340f018c3e9e6691b8311038e /readme.md
parent3e4e68b099cb4f1613755d8f8bae3d956713cdb5 (diff)
Typo in readme
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/readme.md b/readme.md
index fb06812f..6c1fa809 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 in the 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, validation 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).
More features can be read [here](doc/features.md).
@@ -82,10 +82,10 @@ int main() {
}
```
-Note that this exmample did not handle potential errors.
+Note that this example did not handle potential errors.
The following diagram shows the process.
![simpledom](doc/diagram/simpledom.png?raw=true)
-More [examples](example/) are avaliable.
+More [examples](example/) are available.