summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Geisendörfer <felix@debuggable.com>2013-04-09 13:39:17 +0300
committerFelix Geisendörfer <felix@debuggable.com>2013-04-09 13:39:17 +0300
commita2fd657b10c7609e1776004156a8cd3016e2c6c8 (patch)
tree69183ad92b2d4eada21da622d3e6360d4295b37b
parent7357bcb7275c642391288183c208c8e7a4bf5161 (diff)
downloadandroid-node-v8-a2fd657b10c7609e1776004156a8cd3016e2c6c8.tar.gz
android-node-v8-a2fd657b10c7609e1776004156a8cd3016e2c6c8.tar.bz2
android-node-v8-a2fd657b10c7609e1776004156a8cd3016e2c6c8.zip
docs: uncaughtException is here to stay
Brings docs in line with decision made here: https://github.com/joyent/node/issues/2582#issuecomment-9971225
-rw-r--r--doc/api/process.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/process.markdown b/doc/api/process.markdown
index c345da7690..b0060c3ecc 100644
--- a/doc/api/process.markdown
+++ b/doc/api/process.markdown
@@ -43,7 +43,7 @@ Example of listening for `uncaughtException`:
console.log('This will not run.');
Note that `uncaughtException` is a very crude mechanism for exception
-handling and may be removed in the future.
+handling.
Don't use it, use [domains](domain.html) instead. If you do use it, restart
your application after every unhandled exception!