Skip to content

Commit 5d91d09

Browse files
authored
chore: fix typo serialzied -> serialized (#436)
1 parent 4bec21e commit 5d91d09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ console.log(stringify(obj)) // '{"matchfoo":"42","otherfoo":"str","matchnum":3,"
286286
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 <a href="#missingFields">Missing fields</a>.
287287
Missing fields are ignored to avoid having to rewrite objects before serializing. However, other schema rules would throw in similar situations.
288288
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.
289-
The additional properties will always be serialzied at the end of the object.
289+
The additional properties will always be serialized at the end of the object.
290290
Example:
291291
```javascript
292292
const stringify = fastJson({

0 commit comments

Comments
 (0)