aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJamie R. Rytlewski2013-04-26 11:54:19 -0300
committerPete Bacon Darwin2013-04-28 18:45:01 +0100
commit6613ee40e668be8486650f2b735f9d2884188808 (patch)
tree98739e31b99109bc4bc3c99e496c1d23339216d9
parentce6035d953d361abcc697dae0c102b537b60ce5c (diff)
downloadangular.js-6613ee40e668be8486650f2b735f9d2884188808.tar.bz2
docs($q): fix typo
-rw-r--r--src/ng/q.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ng/q.js b/src/ng/q.js
index 5cda3a69..5a4c1857 100644
--- a/src/ng/q.js
+++ b/src/ng/q.js
@@ -121,7 +121,7 @@
* models and avoiding unnecessary browser repaints, which would result in flickering UI.
* - $q promises are recognized by the templating engine in angular, which means that in templates
* you can treat promises attached to a scope as if they were the resulting values.
- * - Q has many more features that $q, but that comes at a cost of bytes. $q is tiny, but contains
+ * - Q has many more features than $q, but that comes at a cost of bytes. $q is tiny, but contains
* all the important functionality needed for common async tasks.
*
* # Testing