From f2d8f8368350c12f82290f58965fd195efd71a40 Mon Sep 17 00:00:00 2001 From: Andrey Sidorov Date: Tue, 14 Jul 2020 21:25:18 +1000 Subject: [PATCH] typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cf89f3d..e7335c7 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ var json = '{ "value" : 9223372036854775807, "v2": 123 }'; console.log('Input:', json); console.log(''); -console.log('node.js bult-in JSON:'); +console.log('node.js built-in JSON:'); var r = JSON.parse(json); console.log('JSON.parse(input).value : ', r.value.toString()); console.log('JSON.stringify(JSON.parse(input)):', JSON.stringify(r)); @@ -36,7 +36,7 @@ Output: ``` Input: { "value" : 9223372036854775807, "v2": 123 } -node.js bult-in JSON: +node.js built-in JSON: JSON.parse(input).value : 9223372036854776000 JSON.stringify(JSON.parse(input)): {"value":9223372036854776000,"v2":123}