From b4ee74667b6453dde156e6631eef8d0156f25097 Mon Sep 17 00:00:00 2001 From: Riley Littlefield Date: Sat, 9 Mar 2019 21:02:47 -0500 Subject: [PATCH] docs: fix typo in directive decorator description (#29207) PR Close #29207 --- packages/core/src/metadata/directives.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/metadata/directives.ts b/packages/core/src/metadata/directives.ts index c5ddda0ba3..8dc84d4236 100644 --- a/packages/core/src/metadata/directives.ts +++ b/packages/core/src/metadata/directives.ts @@ -274,7 +274,7 @@ export interface Directive { * To listen to global events, add the target to the event name. * The target can be `window`, `document` or `body`. * - The value is the statement to execute when the event occurs. If the - * statement evalueates to `false`, then `preventDefault` is applied on the DOM + * statement evaluates to `false`, then `preventDefault` is applied on the DOM * event. A handler method can refer to the `$event` local variable. * */