docs(guide/expression): remove misplaced comma

Closes #5280
This commit is contained in:
mbrookes 2013-12-04 23:15:11 +00:00 committed by Pete Bacon Darwin
parent cf2a7614a4
commit 82e97cf53e

View file

@ -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. 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: 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 evaluation, unlike in JavaScript where the expressions are evaluated against the global
`window`. `window`.