From 51b22cf14f71c3ddaf223fe6764b7068758d5ee7 Mon Sep 17 00:00:00 2001 From: Matthew Schranz Date: Thu, 11 Aug 2016 12:02:12 -0400 Subject: [PATCH] chore: Fix typos in changelog for rc5 (#10688) --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3027fabcc9..79a8a67522 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -162,7 +162,7 @@ declarations: […], // directives, components, and pipes owned by this NgModule imports: [BrowserModule], providers: […], // additional providers - boostrap: [MainComponent], + bootstrap: [MainComponent], }) class MyAppModule {} @@ -223,7 +223,7 @@ declarations: [MyComponentThatUsesAWebComponent], imports: [BrowserModule], schemas: [CUSTOM_ELEMENTS_SCHEMA], - boostrap: [MyComponentThatUsesAWebComponent], + bootstrap: [MyComponentThatUsesAWebComponent], }) export class MyAppModule{} ``` @@ -333,7 +333,7 @@ @NgModule({ declarations: [MyComponent], imports: [BrowserModule, DeprecatedFormsModule], - boostrap: [MyComponent], + bootstrap: [MyComponent], }) export class MyAppModule{} ```