docs: correct appUnless desc re true/false (#41656)

PR Close #41656
This commit is contained in:
Kirk Larkin 2021-04-16 13:40:51 +01:00 committed by Andrew Kushnir
parent d0b1f99598
commit f0b80af2f2
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ The `UnlessDirective` does the opposite of `NgIf`, and `condition` values can be
`UnlessDirective` displays the content when the condition is `false`.
Following is the `UnlessDirective` selector, `appUnless`, applied to the paragraph element.
When `condition` is `true`, the browser displays the sentence.
When `condition` is `false`, the browser displays the sentence.
<code-example path="structural-directives/src/app/app.component.html" header="src/app/app.component.html (appUnless-1)" region="appUnless-1"></code-example>