From 1faf3dab49946dae1dc22af46ad3d9116f7fa955 Mon Sep 17 00:00:00 2001 From: Byungjune YOON Date: Sat, 18 Feb 2017 17:57:07 +0900 Subject: [PATCH] Correct a type error tempate -> template --- public/docs/ts/latest/guide/template-syntax.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/guide/template-syntax.jade b/public/docs/ts/latest/guide/template-syntax.jade index 1872b1296f..c7842ecdb7 100644 --- a/public/docs/ts/latest/guide/template-syntax.jade +++ b/public/docs/ts/latest/guide/template-syntax.jade @@ -161,7 +161,7 @@ h3#expression-context Expression context The context for terms in an expression is a blend of the _template variables_, the directive's _context_ object (if it has one), and the component's _members_. If you reference a name that belongs to more than one of these namespaces, - the tempate variable name takes precedence, followed by a name in the directive's' _context_, + the template variable name takes precedence, followed by a name in the directive's' _context_, and, lastly, the component's member names. The previous example presents such a name collision. The component has a `hero` property and the `*ngFor` defines a `hero` template variable. The `hero` in `{{hero}}` refers to the template input variable, not the component's property.