From 14aa8fccacd915359f9038d451691d1d5282b281 Mon Sep 17 00:00:00 2001 From: PSeitz Date: Wed, 30 Oct 2024 09:17:50 +0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 60358fe..79dd195 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ # Serde JSON Borrow -Up to 2x faster JSON parsing for [ndjson](http://ndjson.org/) type use cases. +Up to 2x faster JSON parsing for NDJSON (Newline Delimited JSON format) type use cases. `serde_json_borrow` deserializes JSON from `&'ctx str` into `serde_json_borrow::Value<'ctx>` DOM, by trying to reference the original bytes, instead of copying them into `Strings`.