(docs) Fix pony greeting equivalence

Cheatsheet claims equivalence between two statements which are not equivalent
Closes #7761
This commit is contained in:
cjc343 2016-03-24 14:14:41 -07:00 committed by Misko Hevery
parent abc266fa35
commit 9c2fe660a3

View File

@ -38,7 +38,7 @@ syntax:
`<div title="Hello {{ponyName}}">`|`{{ponyName}}` `<div title="Hello {{ponyName}}">`|`{{ponyName}}`
description: description:
Binds a property to an interpolated string, e.g. "Hello Seabiscuit". Equivalent to: Binds a property to an interpolated string, e.g. "Hello Seabiscuit". Equivalent to:
`<div [title]="'Hello' + ponyName">` `<div [title]="'Hello ' + ponyName">`
@cheatsheetItem @cheatsheetItem
syntax: syntax: