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
+3 -3
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{}
```