chore: Fix typos in changelog for rc5 (#10688)

This commit is contained in:
Matthew Schranz 2016-08-11 12:02:12 -04:00 committed by vikerman
parent 2291929a15
commit 51b22cf14f
1 changed files with 3 additions and 3 deletions

View File

@ -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{}
```