docs: fix typo in attribute-directives.md (#32943)

Fixes #32924

PR Close #32943
This commit is contained in:
Showtim3 2019-10-02 02:55:13 +05:30 committed by atscott
parent e7729b6863
commit 052cae6427
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ Begin by adding `HostListener` to the list of imported symbols.
<code-example path="attribute-directives/src/app/highlight.directive.2.ts" header="src/app/highlight.directive.ts (imports)" region="imports"></code-example>
Then add two eventhandlers that respond when the mouse enters or leaves,
Then add two event handlers that respond when the mouse enters or leaves,
each adorned by the `HostListener` decorator.
<code-example path="attribute-directives/src/app/highlight.directive.2.ts" header="src/app/highlight.directive.ts (mouse-methods)" region="mouse-methods"></code-example>