Remove repeated words (#1252)

This commit is contained in:
Jonathan Wakely 2020-10-27 00:41:01 +00:00 committed by GitHub
parent 9856201f5c
commit 1fd0447dbb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -105,7 +105,7 @@ or indexing (`object["key"]`). In some cases, the values are even deserialized d
maps. maps.
The DOM approach is conceptually simple and "programmer friendly". Using the The DOM approach is conceptually simple and "programmer friendly". Using the
DOM tree is often easy enough that many users use the DOM as-is instead of creating their own DOM tree is often easy enough that many users use the DOM as-is instead of creating
their own custom data structures. their own custom data structures.
The DOM approach was the only way to parse JSON documents up to version 0.6 of the simdjson library. The DOM approach was the only way to parse JSON documents up to version 0.6 of the simdjson library.
@ -626,4 +626,4 @@ the `CMAKE_CXX_FLAGS` variable:
``` ```
cmake -DCMAKE_CXX_FLAGS="-march=haswell" -B build_haswell cmake -DCMAKE_CXX_FLAGS="-march=haswell" -B build_haswell
cmake --build build_haswell cmake --build build_haswell
``` ```