diff --git a/js/ext/angular/src/directive/ionicCheckbox.js b/js/ext/angular/src/directive/ionicCheckbox.js index fe12c9122c..687fd6611e 100644 --- a/js/ext/angular/src/directive/ionicCheckbox.js +++ b/js/ext/angular/src/directive/ionicCheckbox.js @@ -10,9 +10,9 @@ angular.module('ionic.ui.checkbox', []) * @restrict E * @codepen hqcju * @description - * No different than the HTML checkbox input, except it's styled differently. + * The checkbox is no different than the HTML checkbox input, except it's styled differently. * - * Behaves like any [AngularJS checkbox](http://docs.angularjs.org/api/ng/input/input[checkbox]). + * The checkbox behaves like any [AngularJS checkbox](http://docs.angularjs.org/api/ng/input/input[checkbox]). * * @usage * ```html diff --git a/js/ext/angular/src/directive/ionicRadio.js b/js/ext/angular/src/directive/ionicRadio.js index d1d2e1d173..582f3d7bfa 100644 --- a/js/ext/angular/src/directive/ionicRadio.js +++ b/js/ext/angular/src/directive/ionicRadio.js @@ -10,9 +10,9 @@ angular.module('ionic.ui.radio', []) * @restrict E * @codepen saoBG * @description - * No different than the HTML radio input, except it's styled differently. + * The radio directive is no different than the HTML radio input, except it's styled differently. * - * Behaves like any [AngularJS radio](http://docs.angularjs.org/api/ng/input/input[radio]). + * Radio behaves like any [AngularJS radio](http://docs.angularjs.org/api/ng/input/input[radio]). * * @usage * ```html diff --git a/js/ext/angular/src/directive/ionicToggle.js b/js/ext/angular/src/directive/ionicToggle.js index d56053f0c1..35d343f7be 100644 --- a/js/ext/angular/src/directive/ionicToggle.js +++ b/js/ext/angular/src/directive/ionicToggle.js @@ -11,11 +11,11 @@ angular.module('ionic.ui.toggle', []) * @restrict E * * @description - * An animated switch which binds a given model to a boolean. + * A toggle is an animated switch which binds a given model to a boolean. * * Allows dragging of the switch's nub. * - * Behaves like any [AngularJS checkbox](http://docs.angularjs.org/api/ng/input/input[checkbox]) otherwise. + * The toggle behaves like any [AngularJS checkbox](http://docs.angularjs.org/api/ng/input/input[checkbox]) otherwise. * */ .directive('ionToggle', ['$ionicGesture', '$timeout', function($ionicGesture, $timeout) {