docs: fix typo in structural directive example (#32459)

Fixes #32458

PR Close #32459
This commit is contained in:
Mirco Widmer 2019-09-03 17:53:41 +02:00 committed by Miško Hevery
parent e213080c0b
commit cfa09b84dd
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ import { Directive, Input, TemplateRef, ViewContainerRef } from '@angular/core';
* then the templated elements are removed removed from the DOM, * then the templated elements are removed removed from the DOM,
* the templated elements are (re)inserted into the DOM. * the templated elements are (re)inserted into the DOM.
* *
* <div *ngUnless="errorCount" class="success"> * <div *appUnless="errorCount" class="success">
* Congrats! Everything is great! * Congrats! Everything is great!
* </div> * </div>
* *