diff --git a/modules/angular2/src/forms/directives.js b/modules/angular2/src/forms/directives.js index c40ba45137..429297fae5 100644 --- a/modules/angular2/src/forms/directives.js +++ b/modules/angular2/src/forms/directives.js @@ -97,13 +97,13 @@ export class CheckboxControlValueAccessor { * the control will reflect that change. Likewise, if the value of the control changes, the input element reflects that * change. * - * Here we use {@link FormDirectives}, rather than importing each form directive individually, e.g. + * Here we use {@link formDirectives}, rather than importing each form directive individually, e.g. * `ControlDirective`, `ControlGroupDirective`. This is just a shorthand for the same end result. * * ``` * @Component({selector: "login-comp"}) * @View({ - * directives: [FormDirectives], + * directives: [formDirectives], * inline: "" * }) * class LoginComp { @@ -183,13 +183,13 @@ export class ControlDirective { * In this example, we bind the control group to the form element, and we bind the login and password controls to the * login and password elements. * - * Here we use {@link FormDirectives}, rather than importing each form directive individually, e.g. + * Here we use {@link formDirectives}, rather than importing each form directive individually, e.g. * `ControlDirective`, `ControlGroupDirective`. This is just a shorthand for the same end result. * * ``` * @Component({selector: "login-comp"}) * @View({ - * directives: [FormDirectives], + * directives: [formDirectives], * inline: "