From 332b764cc4c6c2e640a824039320353620dcdd4d Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Mon, 24 Feb 2020 16:44:03 -0500 Subject: [PATCH] Minor nitpick (don't start sentence i --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a72784d7..adfd45ff3 100644 --- a/README.md +++ b/README.md @@ -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 ]")));