diff --git a/modules/angular2/src/forms/directives/checkbox_value_accessor.ts b/modules/angular2/src/forms/directives/checkbox_value_accessor.ts
index 6a97cd235a..dfd020198e 100644
--- a/modules/angular2/src/forms/directives/checkbox_value_accessor.ts
+++ b/modules/angular2/src/forms/directives/checkbox_value_accessor.ts
@@ -9,14 +9,14 @@ import {ControlValueAccessor} from './control_value_accessor';
*
* # Example
* ```
- *
+ *
* ```
*
* @exportedAs angular2/forms
*/
@Directive({
selector:
- 'input[type=checkbox][control],input[type=checkbox][form-control],input[type=checkbox][ng-model]',
+ 'input[type=checkbox][ng-control],input[type=checkbox][ng-form-control],input[type=checkbox][ng-model]',
hostListeners: {'change': 'onChange($event.target.checked)'},
hostProperties: {'checked': 'checked'}
})
diff --git a/modules/angular2/src/forms/directives/control_directive.ts b/modules/angular2/src/forms/directives/control_directive.ts
index 97aa4caab2..dbd9478d19 100644
--- a/modules/angular2/src/forms/directives/control_directive.ts
+++ b/modules/angular2/src/forms/directives/control_directive.ts
@@ -2,7 +2,7 @@ import {ControlValueAccessor} from './control_value_accessor';
import {Validators} from '../validators';
/**
- * A directive that bind a [Control] object to a DOM element.
+ * A directive that bind a [ng-control] object to a DOM element.
*
* @exportedAs angular2/forms
*/
diff --git a/modules/angular2/src/forms/directives/control_group_directive.ts b/modules/angular2/src/forms/directives/control_group_directive.ts
index 99cf549d4c..b9a9d3bc5b 100644
--- a/modules/angular2/src/forms/directives/control_group_directive.ts
+++ b/modules/angular2/src/forms/directives/control_group_directive.ts
@@ -10,11 +10,11 @@ const controlGroupBinding = CONST_EXPR(
new Binding(ControlContainerDirective, {toAlias: FORWARD_REF(() => ControlGroupDirective)}));
/**
- * Binds a control group to a DOM element.
+ * Binds a ng-control group to a DOM element.
*
* # Example
*
- * In this example, we create a control group, and we bind the login and
+ * In this example, we create a ng-control group, 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.
@@ -25,10 +25,10 @@ const controlGroupBinding = CONST_EXPR(
* @View({
* directives: [formDirectives],
* template:
- * "