From 18a66009e1edd8cee1fb73a1dc765bd756e8cb29 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Mon, 4 Aug 2025 12:35:48 -0400 Subject: [PATCH] Clarify memory usage comment in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5eb0abf..77e311f 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ An rfc8259-compliant streaming json parser - SAX-style api - No memory allocations during parsing -- O(1) stack memory usage +- O(1) memory usage - Streaming api - no need to buffer the entire document in memory. Parsing is resumed when more data is available - Strings are unescaped in place before they're presented. No unicode normalization is performed - Robust to crashes with untrusted input