From f0b80af2f25f36d5401ef4e951834efc530453a1 Mon Sep 17 00:00:00 2001 From: Kirk Larkin Date: Fri, 16 Apr 2021 13:40:51 +0100 Subject: [PATCH] docs: correct appUnless desc re true/false (#41656) PR Close #41656 --- aio/content/guide/structural-directives.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/structural-directives.md b/aio/content/guide/structural-directives.md index ea646e0d4b..416e4d80f4 100644 --- a/aio/content/guide/structural-directives.md +++ b/aio/content/guide/structural-directives.md @@ -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.