aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng
diff options
context:
space:
mode:
authorChristian Vuerings2012-11-09 05:44:00 -0800
committerIgor Minar2012-11-11 10:37:59 +0100
commit60acba38402f0c0804e72272fde78c9f3c94a0c4 (patch)
tree39418634281dbf43d625bee5d96c7e6cfc2959e5 /src/ng
parent51bed363706d68e89f51b8782794fc92512d011a (diff)
downloadangular.js-60acba38402f0c0804e72272fde78c9f3c94a0c4.tar.bz2
docs(ngHide): Fix typo and make it more in line with ngShow
Diffstat (limited to 'src/ng')
-rw-r--r--src/ng/directive/ngShowHide.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ng/directive/ngShowHide.js b/src/ng/directive/ngShowHide.js
index cba6cc89..74195468 100644
--- a/src/ng/directive/ngShowHide.js
+++ b/src/ng/directive/ngShowHide.js
@@ -45,11 +45,11 @@ var ngShowDirective = ngDirective(function(scope, element, attr){
* @name ng.directive:ngHide
*
* @description
- * The `ngHide` and `ngShow` directives hide or show a portion
- * of the HTML conditionally.
+ * The `ngHide` and `ngShow` directives hide or show a portion of the DOM tree (HTML)
+ * conditionally.
*
* @element ANY
- * @param {expression} ngHide If the {@link guide/expression expression} truthy then
+ * @param {expression} ngHide If the {@link guide/expression expression} is truthy then
* the element is shown or hidden respectively.
*
* @example