From 5a1fa646d9cbbe0b4f13c07f01c249fb2493e20f Mon Sep 17 00:00:00 2001 From: Mike <33469024+mkanyar@users.noreply.github.com> Date: Mon, 8 Jan 2024 18:35:45 -0500 Subject: [PATCH] fix typo (#164) Co-authored-by: Mike Stephane --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8736fdb..97ec33c 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ The above will produce the following string output: '{"str":"string","num":0,"obj":{"foo":"foo"},"arr":[1,2,3],"bool":true,"nil":null,"undef":undefined,"inf":Infinity,"date":new Date("2016-04-28T22:02:17.000Z"),"map":new Map([["hello","world"]]),"set":new Set([123,456]),"fn":function echo(arg) { return arg; },"re":new RegExp("([^\\\\s]+)", "g"),"big":BigInt("10")}' ``` -Note: to produced a beautified string, you can pass an optional second argument to `serialize()` to define the number of spaces to be used for the indentation. +Note: to produce a beautified string, you can pass an optional second argument to `serialize()` to define the number of spaces to be used for the indentation. ### Automatic Escaping of HTML Characters