From 4ab98c39c3a7aa7ccd727f83f3350a0d1d44ca4c Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Mon, 23 Dec 2024 11:40:05 +0100 Subject: [PATCH] Update docs/mkdocs/docs/api/basic_json/dump.md Co-authored-by: gentooise --- docs/mkdocs/docs/api/basic_json/dump.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/docs/api/basic_json/dump.md b/docs/mkdocs/docs/api/basic_json/dump.md index 1ff15e3f6..7e1ca0f81 100644 --- a/docs/mkdocs/docs/api/basic_json/dump.md +++ b/docs/mkdocs/docs/api/basic_json/dump.md @@ -25,7 +25,7 @@ and `ensure_ascii` parameters. result consists of ASCII characters only. `error_handler` (in) -: how to react on decoding errors; there are three possible values (see [`error_handler_t`](error_handler_t.md)): +: how to react on decoding errors; there are four possible values (see [`error_handler_t`](error_handler_t.md)): : - `strict`: throws a [`type_error`](../../home/exceptions.md#type-errors) exception in case a decoding error occurs (this is the default), - `replace`: replace invalid UTF-8 sequences with U+FFFD (� REPLACEMENT CHARACTER), - `ignore`: ignore invalid UTF-8 sequences during serialization (i.e., these bytes are skipped and not copied to the output), and