Skip to content

Commit 332b764

Browse files
authored
Minor nitpick (don't start sentence i
1 parent 560f074 commit 332b764

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ document doc = document::parse(string("[ 1, 2, 3 ]"));
141141
doc.print_json(cout);
142142
```
143143

144-
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:
144+
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:
145145

146146
```c++
147147
document doc = document::parse(padded_string(string("[ 1, 2, 3 ]")));

0 commit comments

Comments
 (0)