From 1f6adff12cdf1d1ca6d8def2ef0b5abdff8c45b0 Mon Sep 17 00:00:00 2001 From: Joonas Rouhiainen Date: Mon, 25 Jun 2018 16:57:31 +0300 Subject: doc: fix function name in process.md setUncaughtExceptionCapture -> setUncaughtExceptionCaptureCallback process.setUncaughtExceptionCaptureCallback and its docs were originally added in https://github.com/nodejs/node/pull/17159 PR-URL: https://github.com/nodejs/node/pull/21523 Reviewed-By: Anna Henningsen Reviewed-By: Trivikram Kamat Reviewed-By: Colin Ihrig Reviewed-By: Vse Mozhet Byt --- doc/api/process.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/doc/api/process.md b/doc/api/process.md index e6612278b6..edf01258c3 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -1720,18 +1720,19 @@ added: v9.3.0 * `fn` {Function|null} -The `process.setUncaughtExceptionCapture` function sets a function that will -be invoked when an uncaught exception occurs, which will receive the exception -value itself as its first argument. +The `process.setUncaughtExceptionCaptureCallback()` function sets a function +that will be invoked when an uncaught exception occurs, which will receive the +exception value itself as its first argument. If such a function is set, the [`'uncaughtException'`][] event will not be emitted. If `--abort-on-uncaught-exception` was passed from the command line or set through [`v8.setFlagsFromString()`][], the process will not abort. -To unset the capture function, `process.setUncaughtExceptionCapture(null)` -may be used. Calling this method with a non-`null` argument while another -capture function is set will throw an error. +To unset the capture function, +`process.setUncaughtExceptionCaptureCallback(null)` may be used. Calling this +method with a non-`null` argument while another capture function is set will +throw an error. Using this function is mutually exclusive with using the deprecated [`domain`][] built-in module. -- cgit v1.2.3