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
path: root/doc
diff options
context:
space:
mode:
authorMilo Yip <miloyip@gmail.com>2014-08-10 19:00:49 +0400
committerMilo Yip <miloyip@gmail.com>2014-08-10 19:00:49 +0400
commit8969549527358472b42c3600b7fc5dca052621ed (patch)
treec8f0b4620ea15caf98b41ecbceea222f4e45cb4e /doc
parentbb748364fe6187467eb7179c132a7292fe98853b (diff)
Update internals.md
Diffstat (limited to 'doc')
-rw-r--r--doc/internals.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/internals.md b/doc/internals.md
index f1889c24..a112fac2 100644
--- a/doc/internals.md
+++ b/doc/internals.md
@@ -119,9 +119,9 @@ In this way the generation of array values or object members would be a single s
rather than several pop/push operations in the direct implementation.
This also makes the estimation of stack size more easier.
-The final states diagram is shown below:
+The states diagra is shown as follows:
-<img src="diagram/iterative-parser-states-diagram.png" alt="States Diagram" height="400px"/>
+![State Diagram](diagram/iterative-parser-states-diagram.png)
Second, the iterative parser also keeps track of array's value count and object's member count
in its internal stack, which may be different from a conventional implementation.