Minor nitpick (don't start sentence i

This commit is contained in:
Daniel Lemire 2020-02-24 16:44:03 -05:00 committed by GitHub
parent 560f0742cc
commit 332b764cc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ document doc = document::parse(string("[ 1, 2, 3 ]"));
doc.print_json(cout);
```
simdjson requires SIMDJSON_PADDING extra bytes at the end of a string (it doesn't matter if the bytes are initialized). The `padded_string` class is an easy way to ensure this is accomplished up front and prevent the extra allocation:
The simdjson library requires SIMDJSON_PADDING extra bytes at the end of a string (it doesn't matter if the bytes are initialized). The `padded_string` class is an easy way to ensure this is accomplished up front and prevent the extra allocation:
```c++
document doc = document::parse(padded_string(string("[ 1, 2, 3 ]")));