From d1dbc973c4e9524c63473098d1ddcbfcd3a16d22 Mon Sep 17 00:00:00 2001 From: Gerd Jungbluth Date: Sun, 13 Sep 2015 14:30:55 +0200 Subject: [PATCH] docs(DirectiveMetadata): fix some minor typos --- modules/angular2/src/core/metadata/directives.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/angular2/src/core/metadata/directives.ts b/modules/angular2/src/core/metadata/directives.ts index 6ccc0bfbc0..a7fb8ade80 100644 --- a/modules/angular2/src/core/metadata/directives.ts +++ b/modules/angular2/src/core/metadata/directives.ts @@ -533,7 +533,7 @@ export class DirectiveMetadata extends InjectableMetadata { events: string[]; /** - * Specifiy the events, actions, properties and attributes related to the host element. + * Specify the events, actions, properties and attributes related to the host element. * * ## Events * @@ -607,7 +607,7 @@ export class DirectiveMetadata extends InjectableMetadata { * } * ``` * - * In this example the prop property of the host element is updated with the expression value + * In this example the `prop` property of the host element is updated with the expression value * every time it changes. * * ## Attributes @@ -641,7 +641,7 @@ export class DirectiveMetadata extends InjectableMetadata { compileChildren: boolean; /** - * Defines the set of injectable objects that are visible to a Directive and its light dom + * Defines the set of injectable objects that are visible to a Directive and its light DOM * children. * * ## Simple Example @@ -776,7 +776,7 @@ export class ComponentMetadata extends DirectiveMetadata { changeDetection: ChangeDetectionStrategy; /** - * Defines the set of injectable objects that are visible to its view dom children. + * Defines the set of injectable objects that are visible to its view DOM children. * * ## Simple Example * @@ -974,4 +974,4 @@ export class HostBindingMetadata { @CONST() export class HostListenerMetadata { constructor(public eventName: string, public args?: string[]) {} -} \ No newline at end of file +}