From 2ccdfebaa77ba6e032cd2076af9235a6b22fae45 Mon Sep 17 00:00:00 2001 From: chenguoping Date: Sat, 14 Mar 2020 18:10:55 +0800 Subject: [PATCH] fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bb65bc0d..8aa47591 100644 --- a/README.md +++ b/README.md @@ -1385,7 +1385,7 @@ By default, the library does not preserve the **insertion order of object elemen We checked with Valgrind and the Address Sanitizer (ASAN) that there are no memory leaks. -If you find that a prasering program with this library does not release memory, please consider the following case and it maybe unrelated to this library. +If you find that a parsing program with this library does not release memory, please consider the following case and it maybe unrelated to this library. **Your program is compiled with glibc.** There is a tunable threshold that glibc uses to decide whether to actually return memory to the system or whether to cache it for later reuse. If in your program you make lots of small allocations and those small allocations are not a contiguous block and are presumably below the threshold, then they will not get returned to the OS. Here is a related issue [#1924](https://github.com/nlohmann/json/issues/1924).