Skip to content

Commit 813b12e

Browse files
committed
s/falsey/falsy
1 parent cd592f7 commit 813b12e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/angular/_jade/_util-fns.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757

5858
//- Other
5959
- var _truthy = 'truthy';
60-
- var _falsey = 'falsey';
60+
- var _falsy = 'falsy';
6161

6262
//- Used to prefix identifiers that are private. In Dart this will be '_'.
6363
- var _priv = '';

src/angular/_util-fns.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ include /_jade/_util-fns
1515
- var _Observable = 'Stream';
1616
- var _liveLink = 'sample repo';
1717
- var _truthy = 'true';
18-
- var _falsey = 'false';
18+
- var _falsy = 'false';
1919
- var _appDir = 'lib';
2020
- var _indexHtmlDir = 'web';
2121
- var _mainDir = 'web';

src/angular/guide/template-syntax.jade

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ code-example(format="nocode").
695695
:marked
696696
Finally, we can bind to a specific class name.
697697
Angular adds the class when the template expression evaluates to #{_truthy}.
698-
It removes the class when the expression is #{_falsey}.
698+
It removes the class when the expression is #{_falsy}.
699699
+makeExample('template-syntax/ts/app/app.component.html', 'class-binding-3')(format=".")
700700

701701
.l-sub-section
@@ -1075,7 +1075,7 @@ figure.image-display
10751075
Don't forget the asterisk (`*`) in front of `ngIf`.
10761076
For more information, see [\* and <template>](#star-template).
10771077
:marked
1078-
Binding to a #{_falsey} expression removes the element subtree from the DOM.
1078+
Binding to a #{_falsy} expression removes the element subtree from the DOM.
10791079
+makeExample('template-syntax/ts/app/app.component.html', 'NgIf-2')(format=".")
10801080

10811081
.callout.is-helpful

0 commit comments

Comments
 (0)