Skip to content

Commit 3673d3c

Browse files
authored
Update benchmark.md
1 parent a9e40f1 commit 3673d3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Different libraries bind data to struct in different ways:
162162
All parsing is done within one pass directly from byte array stream. Single pass has two level of meaning:
163163

164164
* on the large scale: the iterator api is forward only, you get what you need from current spot. There is no going back.
165-
* on the micro scale: readInt or readString is done in one pass. For example, pass integer is not done, by cut string out then parse string. Instead we use the byte stream to calculate int value directly. readFloat is an exception.
165+
* on the micro scale: readInt or readString is done in one pass. For example, parse integer is not done by cutting string out, then parse string. Instead we use the byte stream to calculate int value directly. even readFloat or readDouble is implemented this way, with exceptions.
166166

167167
## Minimum allocation
168168

0 commit comments

Comments
 (0)