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 +}