From 99587a9907a28bbc876431b1c3a85f010fb20e70 Mon Sep 17 00:00:00 2001 From: Adil MOURAHI Date: Wed, 22 Jul 2015 12:09:14 +0100 Subject: [PATCH] docs: Update 02_directives.md Closes #3191 --- modules/angular2/docs/core/02_directives.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/angular2/docs/core/02_directives.md b/modules/angular2/docs/core/02_directives.md index 6073dcdc50..8a7740530b 100644 --- a/modules/angular2/docs/core/02_directives.md +++ b/modules/angular2/docs/core/02_directives.md @@ -67,7 +67,7 @@ Here is a trivial example of a tooltip decorator. The directive will log a toolt 'text: tooltip' | - DOM element tooltip property should be ], | mapped to the directive text property. host: { | List which events need to be mapped. - (mouseover): 'show()' | - Invoke the show() method every time + '(mouseover)': 'show()' | - Invoke the show() method every time } | the mouseover event is fired. }) | class Form { | Directive controller class, instantiated