From a48ffd9378f34bfae2573075d74a7cb7735867ec Mon Sep 17 00:00:00 2001 From: Filip Halaxa Date: Sun, 24 Nov 2024 13:33:47 +0100 Subject: [PATCH] Readme fix --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 469c421..b1e0e97 100644 --- a/README.md +++ b/README.md @@ -634,8 +634,7 @@ but you forgot to specify a JSON Pointer. See [Parsing a subtree](#parsing-a-sub ### "That didn't help" The other reason may be, that one of the items you iterate is itself so huge it cannot be decoded at once. For example, you iterate over users and one of them has thousands of "friend" objects in it. -The most efficient solution is to set `recursive` option to `true`. -See [Recursive iteration](#recursive). +The most efficient solution is to use [Recursive iteration](#recursive). ### "I am still out of luck"