From 3a96631387444e18137465af4140f859cd70258f Mon Sep 17 00:00:00 2001 From: Issei Horie Date: Mon, 23 Sep 2019 18:14:41 +0900 Subject: [PATCH] docs: removed duplicated spaces in upgrade guide (#32813) PR Close #32813 --- aio/content/guide/upgrade.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/upgrade.md b/aio/content/guide/upgrade.md index a1c145672d..4b82c33666 100644 --- a/aio/content/guide/upgrade.md +++ b/aio/content/guide/upgrade.md @@ -1622,7 +1622,7 @@ There are several notable changes here: * You're using the property binding syntax around `ng-class`. Though Angular does have [a very similar `ngClass`](guide/template-syntax#directives) as AngularJS does, its value is not magically evaluated as an expression. - In Angular, you always specify in the template when an attribute's value is + In Angular, you always specify in the template when an attribute's value is a property expression, as opposed to a literal string. * You've replaced `ng-repeat`s with `*ngFor`s.