docs(ngHide): Fix typo and make it more in line with ngShow

This commit is contained in:
Christian Vuerings 2012-11-09 05:44:00 -08:00 committed by Igor Minar
parent 51bed36370
commit 60acba3840

View file

@ -45,11 +45,11 @@ var ngShowDirective = ngDirective(function(scope, element, attr){
* @name ng.directive:ngHide * @name ng.directive:ngHide
* *
* @description * @description
* The `ngHide` and `ngShow` directives hide or show a portion * The `ngHide` and `ngShow` directives hide or show a portion of the DOM tree (HTML)
* of the HTML conditionally. * conditionally.
* *
* @element ANY * @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. * the element is shown or hidden respectively.
* *
* @example * @example