docs(cheatsheet): fix typo in <template> syntax description

Closes #6051
This commit is contained in:
Vladislav Zarakovsky 2015-12-21 14:40:35 +03:00
parent 822e83ebb0
commit cab69f689f
1 changed files with 2 additions and 2 deletions

View File

@ -62,10 +62,10 @@ Creates a local variable `movieplayer` that provides access to the `video` eleme
@cheatsheetItem
syntax:
`<p *my-unless="myExpression">...</p>`|`*my-unless`
`<p *myUnless="myExpression">...</p>`|`*myUnless`
description:
The `*` symbol means that the current element will be turned into an embedded template. Equivalent to:
`<template [myless]="myExpression"><p>...</p></template>`
`<template [myUnless]="myExpression"><p>...</p></template>`
@cheatsheetItem
syntax: