From 16f41ea05923189b3cecbbfc742945ff0e06f269 Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Sun, 14 Jun 2020 18:48:42 -0400 Subject: [PATCH] Added a word. --- doc/performance.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/performance.md b/doc/performance.md index 03b1f854..179cb86f 100644 --- a/doc/performance.md +++ b/doc/performance.md @@ -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;