aboutsummaryrefslogtreecommitdiffstats
path: root/src/directive/ngShowHide.js
diff options
context:
space:
mode:
authorIgor Minar2012-03-09 15:18:57 -0800
committerIgor Minar2012-03-09 16:27:12 -0800
commite0cc84ad7b7cdeb22cc56a75ab0775b90791da06 (patch)
tree16497f1b3c9ebfc22857878479268d261cf7db2b /src/directive/ngShowHide.js
parent4a94bb9b345946a9efd51adaeedc0f907af4df49 (diff)
downloadangular.js-e0cc84ad7b7cdeb22cc56a75ab0775b90791da06.tar.bz2
docs(directives): set directive param name to directive name
so that we can render better usage examples in docs
Diffstat (limited to 'src/directive/ngShowHide.js')
-rw-r--r--src/directive/ngShowHide.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/directive/ngShowHide.js b/src/directive/ngShowHide.js
index ee3a17d9..40a8a68e 100644
--- a/src/directive/ngShowHide.js
+++ b/src/directive/ngShowHide.js
@@ -9,7 +9,7 @@
* conditionally.
*
* @element ANY
- * @param {expression} expression If the {@link guide/dev_guide.expressions expression} is truthy
+ * @param {expression} ng-show If the {@link guide/dev_guide.expressions expression} is truthy
* then the element is shown or hidden respectively.
*
* @example
@@ -49,7 +49,7 @@ var ngShowDirective = ngDirective(function(scope, element, attr){
* of the HTML conditionally.
*
* @element ANY
- * @param {expression} expression If the {@link guide/dev_guide.expressions expression} truthy then
+ * @param {expression} ng-hide If the {@link guide/dev_guide.expressions expression} truthy then
* the element is shown or hidden respectively.
*
* @example