From 5725c5925c254ecc52cc80a1492695b5aac27e0c Mon Sep 17 00:00:00 2001 From: nickraphael Date: Thu, 14 Jul 2016 00:28:08 +1000 Subject: [PATCH] docs(ExceptionHandler): Update code example in comment block to correct syntax error. (#10032) --- modules/@angular/facade/src/exception_handler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/@angular/facade/src/exception_handler.ts b/modules/@angular/facade/src/exception_handler.ts index dacd210ff6..1d87ee225a 100644 --- a/modules/@angular/facade/src/exception_handler.ts +++ b/modules/@angular/facade/src/exception_handler.ts @@ -35,7 +35,7 @@ class _ArrayLogger { * } * } * - * bootstrap(MyApp, {provide: ExceptionHandler, useClass: MyExceptionHandler}]) + * bootstrap(MyApp, [{provide: ExceptionHandler, useClass: MyExceptionHandler}]) * * ``` * @stable