From 5997f82c37bb0ea5037aecdd87df07bc56bd1cdb Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Wed, 20 Mar 2024 14:26:11 -0400 Subject: [PATCH] Update basics.md --- doc/basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/basics.md b/doc/basics.md index b1ec6c573..7c5ad8745 100644 --- a/doc/basics.md +++ b/doc/basics.md @@ -372,7 +372,7 @@ support for users who avoid exceptions. See [the simdjson error handling documen Debug mode: an OUT_OF_ORDER_ITERATION error is generated. > NOTE: JSON allows you to escape characters in keys. E.g., the key `"date"` may be written as - > `"\u0064\u0061\u0074\u0065"`. By default, simdjson does *not* unescape keys when matching by default. + > `"\u0064\u0061\u0074\u0065"`. By default, simdjson does *not* unescape keys when matching. > Thus if you search for the key `"date"` and the JSON document uses `"\u0064\u0061\u0074\u0065"` > as a key, it will not be recognized. This is not generally a problem. Nevertheless, if you do need > to support escaped keys, the method `unescaped_key()` provides the desired unescaped keys by