diff --git a/docs/_posts/2024-02-22-list.markdown b/docs/_posts/2024-02-22-list.markdown
index 04fa059..b87550c 100644
--- a/docs/_posts/2024-02-22-list.markdown
+++ b/docs/_posts/2024-02-22-list.markdown
@@ -67,7 +67,7 @@ Common data structures.
|Use Case|Recommended Tools|
|---|---|
|CSV|[**zsv**](https://github.com/liquidaty/zsv)
Fast (simd) CSV parser.|
-|JSON|[**json-c**](https://github.com/json-c/json-c)
A formal JSON parser for C, with multi-threaded support.
[**parson**](https://github.com/kgabis/parson)
Two-file, C89-compliant simple JSON parser. Suitable for embedded systems.
[**simdjson**](https://github.com/simdjson/simdjson)
Very fast JSON parser (simd), used by Node.js and a lot more. A C++-only library, but has a C wrapper at [simdjson_pas](https://github.com/pavelmash/simdjson_pas).|
+|JSON|[**cJSON**](https://github.com/DaveGamble/cJSON)
Two-file, ultralightweight JSON parser in C89. Suitable for embedded systems, not thread safe.
[**json-c**](https://github.com/json-c/json-c)
A formal JSON parser for C, with multi-threaded support.|
|INI|[**inih**](https://github.com/benhoyt/inih)
Single header INI file parser, good for embedded systems. |
|YAML|[**libyaml**](https://github.com/yaml/libyaml)
Official YAML parser, but inactive for a while.|
|TOML|[**tomlc99**](https://github.com/cktan/tomlc99)
C99-compliant TOML parser.|