From a5419608e04c2c6243d6e5799ac0f9d08f5cfd37 Mon Sep 17 00:00:00 2001 From: Michael George Attard Date: Sat, 15 Oct 2016 22:52:32 +0200 Subject: [PATCH] docs(ngIf): minor improvements --- modules/@angular/common/src/directives/ng_if.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/@angular/common/src/directives/ng_if.ts b/modules/@angular/common/src/directives/ng_if.ts index 9e228cdd28..9d8f42f36a 100644 --- a/modules/@angular/common/src/directives/ng_if.ts +++ b/modules/@angular/common/src/directives/ng_if.ts @@ -11,14 +11,14 @@ import {Directive, Input, TemplateRef, ViewContainerRef} from '@angular/core'; /** * Removes or recreates a portion of the DOM tree based on an {expression}. * - * If the expression assigned to `ngIf` evaluates to a false value then the element + * If the expression assigned to `ngIf` evaluates to a falsy value then the element * is removed from the DOM, otherwise a clone of the element is reinserted into the DOM. * * ### Example ([live demo](http://plnkr.co/edit/fe0kgemFBtmQOY31b4tw?p=preview)): * * ``` *
- * * {{errorCount}} errors detected *