From 3393bdfa87bab9493b74bcbcdeefb9cbb40e6f16 Mon Sep 17 00:00:00 2001 From: Dominic Kramer Date: Wed, 14 Jun 2017 15:00:26 -0700 Subject: [PATCH] Specify rejections not reported by default in docs --- packages/error-reporting/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/error-reporting/README.md b/packages/error-reporting/README.md index 4a7bae026f3c..52a09fdaba13 100644 --- a/packages/error-reporting/README.md +++ b/packages/error-reporting/README.md @@ -66,7 +66,7 @@ errors.report(new Error('Something broke!')); ## Unhandled Rejections -Unhandled Rejections are reported by default. The reporting of unhandled rejections can be disabled using the `reportUnhandledRejections` configuration option. See the [Configuration](#configuration) section for more details. +Unhandled Rejections are not reported by default. The reporting of unhandled rejections can be enabled using the `reportUnhandledRejections` configuration option. See the [Configuration](#configuration) section for more details. If unhandled rejections are set to be reported, then, when an unhandled rejection occurs, a message is printed to standard out indicated that an unhandled rejection had occurred and is being reported, and the value causing the rejection is reported to the error-reporting console.