diff --git a/doc/api/process.markdown b/doc/api/process.markdown index 0c046d66e2d851..87229205613339 100644 --- a/doc/api/process.markdown +++ b/doc/api/process.markdown @@ -163,7 +163,7 @@ event: ```js somePromise.then((res) => { - return reportToUser(JSON.parse(res)); // note the typo + return reportToUser(JSON.pasre(res)); // note the typo (`pasre`) }); // no `.catch` or `.then` ```