aboutsummaryrefslogtreecommitdiffstats
path: root/src/directives.js
diff options
context:
space:
mode:
authorAnthony Lieuallen2011-02-14 13:17:04 -0500
committerIgor Minar2011-02-16 00:04:15 -0500
commit7cf70c587e436014b2148eb4f12ecda307d25957 (patch)
treedf8171b59e9abd8515fcb93fd5901abcd08af9f7 /src/directives.js
parent1777110958f76ee4be5760e36c96702223385918 (diff)
downloadangular.js-7cf70c587e436014b2148eb4f12ecda307d25957.tar.bz2
Small spelling and grammar fixes in documentation.
Diffstat (limited to 'src/directives.js')
-rw-r--r--src/directives.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/directives.js b/src/directives.js
index e0421114..06a99149 100644
--- a/src/directives.js
+++ b/src/directives.js
@@ -700,7 +700,7 @@ angularDirective("ng:class-even", ngClass(function(i){return i % 2 === 1;}));
* of the HTML conditionally.
*
* @element ANY
- * @param {expression} expression If the {@link guide.expression expression} truthy then the element
+ * @param {expression} expression If the {@link guide.expression expression} is truthy then the element
* is shown or hidden respectively.
*
* @example
@@ -781,8 +781,8 @@ angularDirective("ng:hide", function(expression, element){
* The ng:style allows you to set CSS style on an HTML element conditionally.
*
* @element ANY
- * @param {expression} expression {@link guide.expression Expression} which evals to an object who's
- * keys are CSS style names and values are coresponding values for those CSS keys.
+ * @param {expression} expression {@link guide.expression Expression} which evals to an object whose
+ * keys are CSS style names and values are corresponding values for those CSS keys.
*
* @example
<doc:example>