aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/directive/booleanAttrs.js
diff options
context:
space:
mode:
authorDave Peticolas2013-09-21 09:27:03 -0700
committerBrian Ford2013-09-27 13:01:35 -0700
commit2361572012ef8689004935da4cecd45337378d3b (patch)
treefde4ecceb7211a82e115b7ecf9827860b37a8c43 /src/ng/directive/booleanAttrs.js
parent7c38b292f8ad7057b62f7ee4a2c651d0213d5e5f (diff)
downloadangular.js-2361572012ef8689004935da4cecd45337378d3b.tar.bz2
docs(ngDisabled): clarify
Diffstat (limited to 'src/ng/directive/booleanAttrs.js')
-rw-r--r--src/ng/directive/booleanAttrs.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ng/directive/booleanAttrs.js b/src/ng/directive/booleanAttrs.js
index 9ccb3977..b290d52c 100644
--- a/src/ng/directive/booleanAttrs.js
+++ b/src/ng/directive/booleanAttrs.js
@@ -147,9 +147,9 @@
* </div>
* </pre>
*
- * The HTML specs do not require browsers to preserve the special attributes such as disabled.
- * (The presence of them means true and absence means false)
- * This prevents the angular compiler from correctly retrieving the binding expression.
+ * The HTML specs do not require browsers to preserve the values of special attributes
+ * such as disabled. (The presence of them means true and absence means false)
+ * This prevents the Angular compiler from correctly retrieving the binding expression.
* To solve this problem, we introduce the `ngDisabled` directive.
*
* @example