Skip to content

Commit f2d8f83

Browse files
committed
typo
1 parent 6ee392e commit f2d8f83

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ var json = '{ "value" : 9223372036854775807, "v2": 123 }';
2020
console.log('Input:', json);
2121
console.log('');
2222

23-
console.log('node.js bult-in JSON:');
23+
console.log('node.js built-in JSON:');
2424
var r = JSON.parse(json);
2525
console.log('JSON.parse(input).value : ', r.value.toString());
2626
console.log('JSON.stringify(JSON.parse(input)):', JSON.stringify(r));
@@ -36,7 +36,7 @@ Output:
3636
```
3737
Input: { "value" : 9223372036854775807, "v2": 123 }
3838
39-
node.js bult-in JSON:
39+
node.js built-in JSON:
4040
JSON.parse(input).value : 9223372036854776000
4141
JSON.stringify(JSON.parse(input)): {"value":9223372036854776000,"v2":123}
4242

0 commit comments

Comments
 (0)