summaryrefslogtreecommitdiff
path: root/doc/api/process.md
diff options
context:
space:
mode:
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 64d93a8760..818bb6ed4a 100644
--- a/doc/api/process.md
+++ b/doc/api/process.md
@@ -286,7 +286,7 @@ The listener function is called with the following arguments:
```js
process.on('unhandledRejection', (reason, p) => {
console.log('Unhandled Rejection at:', p, 'reason:', reason);
- // application specific logging, throwing an error, or other logic here
+ // Application specific logging, throwing an error, or other logic here
});
somePromise.then((res) => {