From fd14460148c30b082b4936dafc2cff83b7024207 Mon Sep 17 00:00:00 2001 From: Henry Wong Date: Wed, 9 Sep 2015 21:35:02 -0700 Subject: [PATCH] docs: fixed misspelling of the word 'explicitly' Closes #4108 --- modules/angular2/src/core/zone/ng_zone.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/angular2/src/core/zone/ng_zone.ts b/modules/angular2/src/core/zone/ng_zone.ts index 0e03295df3..7d59044c0d 100644 --- a/modules/angular2/src/core/zone/ng_zone.ts +++ b/modules/angular2/src/core/zone/ng_zone.ts @@ -9,7 +9,7 @@ export interface NgZoneZone extends Zone { _innerZone: boolean; } * A wrapper around zones that lets you schedule tasks after it has executed a task. * * The wrapper maintains an "inner" and an "mount" `Zone`. The application code will executes - * in the "inner" zone unless `runOutsideAngular` is explicitely called. + * in the "inner" zone unless `runOutsideAngular` is explicitly called. * * A typical application will create a singleton `NgZone`. The outer `Zone` is a fork of the root * `Zone`. The default `onTurnDone` runs the Angular change detection.