summaryrefslogtreecommitdiff
path: root/doc/api/process.md
diff options
context:
space:
mode:
authorСковорода Никита Андреевич <chalkerx@gmail.com>2018-03-31 12:17:49 +0300
committerTrivikram Kamat <16024985+trivikr@users.noreply.github.com>2018-04-01 00:25:51 -0700
commit3e1dd5597cce45fa7ef6aeb8889ddbd27927c4b4 (patch)
treed767d17903bc849bbbfec64fa679584d93744961 /doc/api/process.md
parent107b06792a8ffca3de13550440ed25bab345a1c2 (diff)
downloadandroid-node-v8-3e1dd5597cce45fa7ef6aeb8889ddbd27927c4b4.tar.gz
android-node-v8-3e1dd5597cce45fa7ef6aeb8889ddbd27927c4b4.tar.bz2
android-node-v8-3e1dd5597cce45fa7ef6aeb8889ddbd27927c4b4.zip
doc: fix quotes mistypes in inline code blocks
This fixes trivial invalid quotes mistypes in inline code blocks, e.g. forgotten quotes or mixed order. Whether this could be easily automatically checked in lint is a separate question: e.g. `'` is valid. PR-URL: https://github.com/nodejs/node/pull/19713 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'doc/api/process.md')
-rw-r--r--doc/api/process.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/process.md b/doc/api/process.md
index f413748cfa..608c5ab6fd 100644
--- a/doc/api/process.md
+++ b/doc/api/process.md
@@ -211,7 +211,7 @@ changes:
a process warning.
-->
-The `'unhandledRejection`' event is emitted whenever a `Promise` is rejected and
+The `'unhandledRejection'` event is emitted whenever a `Promise` is rejected and
no error handler is attached to the promise within a turn of the event loop.
When programming with Promises, exceptions are encapsulated as "rejected
promises". Rejections can be caught and handled using [`promise.catch()`][] and