From 93c331d10337d31ba38110434f326bf9e7bba3c4 Mon Sep 17 00:00:00 2001 From: PatrickJS Date: Tue, 5 May 2015 15:16:20 -0700 Subject: [PATCH] fix(decorators.es6): export Directive decorator Closes #1688 --- modules/angular2/src/core/annotations/decorators.es6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/angular2/src/core/annotations/decorators.es6 b/modules/angular2/src/core/annotations/decorators.es6 index d27e337257..48fed20015 100644 --- a/modules/angular2/src/core/annotations/decorators.es6 +++ b/modules/angular2/src/core/annotations/decorators.es6 @@ -9,7 +9,7 @@ import {makeDecorator, makeParamDecorator} from '../../util/decorators'; /* from annotations */ export var Component = makeDecorator(ComponentAnnotation); -export var Decorator = makeDecorator(DirectiveAnnotation); +export var Directive = makeDecorator(DirectiveAnnotation); /* from view */ export var View = makeDecorator(ViewAnnotation);