summaryrefslogtreecommitdiff
path: root/doc/api/domain.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/domain.md')
-rw-r--r--doc/api/domain.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/domain.md b/doc/api/domain.md
index 957a32af15..102ac8ec7c 100644
--- a/doc/api/domain.md
+++ b/doc/api/domain.md
@@ -1,7 +1,7 @@
# Domain
<!-- YAML
changes:
- - version: REPLACEME
+ - version: v8.0.0
pr-url: https://github.com/nodejs/node/pull/12489
description: Handlers for `Promise`s are now invoked in the domain in which
the first promise of a chain was created.
@@ -453,7 +453,7 @@ than crashing the program.
## Domains and Promises
-As of Node REPLACEME, the handlers of Promises are run inside the domain in
+As of Node 8.0.0, the handlers of Promises are run inside the domain in
which the call to `.then` or `.catch` itself was made:
```js