Added a word.

This commit is contained in:
Daniel Lemire 2020-06-14 18:48:42 -04:00
parent 0a7270fc29
commit 16f41ea059
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ Reusing the parser for maximum efficiency
If you're using simdjson to parse multiple documents, or in a loop, you should make a parser once
and reuse it. The simdjson library will allocate and retain internal buffers between parses, keeping
buffers hot in cache and keeping memory allocation and initialization to a minimum. In this manner,
you can parse terabytes of JSON data without doing any allocation.
you can parse terabytes of JSON data without doing any new allocation.
```c++
dom::parser parser;