From 28be0a59cfef2fc5017a2b8fe41fecc5be336974 Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Tue, 22 Sep 2015 15:53:41 +0200 Subject: [PATCH] docs(application_common): fixes typo and improves docs for bootstrap Closes #4312 --- modules/angular2/src/core/application_common.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/angular2/src/core/application_common.ts b/modules/angular2/src/core/application_common.ts index 2499e9ff43..ada1139f0d 100644 --- a/modules/angular2/src/core/application_common.ts +++ b/modules/angular2/src/core/application_common.ts @@ -77,7 +77,7 @@ export function applicationDomProviders(): Array { * It is also possible to specify providers to be made in the new platform. These providers * will be shared between all applications on the page. For example, an abstraction for * the browser cookie jar should be bound at the platform level, because there is only one - * cookie jar regardless of how many applications on the age will be accessing it. + * cookie jar regardless of how many applications on the page will be accessing it. * * If providers are specified directly, `platform` will create the Angular platform with * them if a platform did not exist already. If it did exist, however, an error will be @@ -153,7 +153,7 @@ export function platform(providers?: Array): PlatformRe * `componentInjectableBindings` argument. * 3. It creates a new `Zone` and connects it to the angular application's change detection * domain instance. - * 4. It creates a shadow DOM on the selected component's host element and loads the + * 4. It creates an emulated or shadow DOM on the selected component's host element and loads the * template into it. * 5. It instantiates the specified component. * 6. Finally, Angular performs change detection to apply the initial data providers for the