(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
1 changed files with 1 additions and 1 deletions

View File

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