diff --git a/modules/angular2/docs/core/01_templates.md b/modules/angular2/docs/core/01_templates.md index a85506bb9a..eb9c752256 100644 --- a/modules/angular2/docs/core/01_templates.md +++ b/modules/angular2/docs/core/01_templates.md @@ -8,7 +8,7 @@ The design of template syntax has these properties: * All data-binding expressions are easily identifiable. (i.e. there is never an ambiguity wether the value should be interpreted as string literal or as an expression.) -* All events and their statments are easily identifiable. +* All events and their statements are easily identifiable. * All places of DOM instantiation are easily identifiable. * All places of variable declaration is esily identifiable. @@ -300,7 +300,7 @@ keeping `null` and `undefined` as empty strings. ## Inline Templates Data binding allows updating the DOM's properties, but it does not allow for changing of the DOM structure. To change -DOM structure we need the ability to define child templates, and than instantiat these templates into Views. The +DOM structure we need the ability to define child templates, and then instantiate these templates into Views. The Views can than be inserted and removed as needed to change the DOM structure.