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 04450c48df
commit f3e053cb6f

View file

@ -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