docs(cheatsheet): fix typo in <template> syntax description
Closes #6051
This commit is contained in:
parent
822e83ebb0
commit
cab69f689f
|
@ -62,10 +62,10 @@ Creates a local variable `movieplayer` that provides access to the `video` eleme
|
||||||
|
|
||||||
@cheatsheetItem
|
@cheatsheetItem
|
||||||
syntax:
|
syntax:
|
||||||
`<p *my-unless="myExpression">...</p>`|`*my-unless`
|
`<p *myUnless="myExpression">...</p>`|`*myUnless`
|
||||||
description:
|
description:
|
||||||
The `*` symbol means that the current element will be turned into an embedded template. Equivalent to:
|
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
|
@cheatsheetItem
|
||||||
syntax:
|
syntax:
|
||||||
|
|
Loading…
Reference in New Issue