From 223854fcd18656a9e17727e3bd26a796e0181fac Mon Sep 17 00:00:00 2001 From: DumpOfTheVar Date: Wed, 8 Feb 2017 23:02:18 +0200 Subject: [PATCH] docs(attribute-directives): fix typo (#3193) Change `Import` to `Input` which is used in the example ``` import { Directive, ElementRef, HostListener, Input } from '@angular/core'; ``` --- public/docs/ts/latest/guide/attribute-directives.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/guide/attribute-directives.jade b/public/docs/ts/latest/guide/attribute-directives.jade index 07bb2f8f5a..7c19be8d57 100644 --- a/public/docs/ts/latest/guide/attribute-directives.jade +++ b/public/docs/ts/latest/guide/attribute-directives.jade @@ -172,7 +172,7 @@ a#respond-to-user and respond by setting or clearing the highlight color. Begin by adding `HostListener` to the list of imported symbols; - add the `Import` symbol as well because you'll need it soon. + add the `Input` symbol as well because you'll need it soon. +makeExample('attribute-directives/ts/src/app/highlight.directive.ts','imports')(format=".") :marked