aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/expression.ngdoc
diff options
context:
space:
mode:
authormbrookes2013-12-04 23:15:11 +0000
committerPete Bacon Darwin2013-12-12 11:25:41 +0000
commit82e97cf53e93b2e0032e9220022be1245552fd10 (patch)
tree16e04d65a14ee4f382ce991c8e05e50f30d956f0 /docs/content/guide/expression.ngdoc
parentcf2a7614a411e34b54742fd1394b22f8a52104d7 (diff)
downloadangular.js-82e97cf53e93b2e0032e9220022be1245552fd10.tar.bz2
docs(guide/expression): remove misplaced comma
Closes #5280
Diffstat (limited to 'docs/content/guide/expression.ngdoc')
-rw-r--r--docs/content/guide/expression.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/guide/expression.ngdoc b/docs/content/guide/expression.ngdoc
index 3499af72..b884dd45 100644
--- a/docs/content/guide/expression.ngdoc
+++ b/docs/content/guide/expression.ngdoc
@@ -18,7 +18,7 @@ It might be tempting to think of Angular view expressions as JavaScript expressi
not entirely correct, since Angular does not use a JavaScript `eval()` to evaluate expressions.
You can think of Angular expressions as JavaScript expressions with following differences:
- * **Attribute Evaluation:** evaluation of all properties are against the scope, doing the
+ * **Attribute Evaluation:** evaluation of all properties are against the scope doing the
evaluation, unlike in JavaScript where the expressions are evaluated against the global
`window`.