From bb5e28dca3d12b2ad590771f062c8af9be0ef756 Mon Sep 17 00:00:00 2001 From: Issei Horie Date: Sat, 28 May 2022 17:50:30 +0900 Subject: [PATCH] chore: fix typo serialzied -> serialized --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bb1511b4..49e899fe 100644 --- a/README.md +++ b/README.md @@ -286,7 +286,7 @@ console.log(stringify(obj)) // '{"matchfoo":"42","otherfoo":"str","matchnum":3," If *additionalProperties* is not present or is set to `false`, every property that is not explicitly listed in the *properties* and *patternProperties* objects,will be ignored, as described in Missing fields. Missing fields are ignored to avoid having to rewrite objects before serializing. However, other schema rules would throw in similar situations. If *additionalProperties* is set to `true`, it will be used by `JSON.stringify` to stringify the additional properties. If you want to achieve maximum performance, we strongly encourage you to use a fixed schema where possible. -The additional properties will always be serialzied at the end of the object. +The additional properties will always be serialized at the end of the object. Example: ```javascript const stringify = fastJson({