diff --git a/docs/readJson.md b/docs/readJson.md index e7500a2b..0cfb2168 100644 --- a/docs/readJson.md +++ b/docs/readJson.md @@ -60,7 +60,7 @@ fs.readJson(file, { throws: false }, (err, obj) => { console.log(obj) // => null }) -// Wtih Promises: +// With Promises: fs.readJson(file, { throws: false }) .then(obj => { console.log(obj) // => null