aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/q.js
diff options
context:
space:
mode:
authorJamie R. Rytlewski2013-04-26 11:54:19 -0300
committerPete Bacon Darwin2013-04-28 18:44:07 +0100
commit61c0adedc3fb936e268588d8cfc77df0962453c7 (patch)
treeae8b57f23c36e7ce84aa2d88f288b59f0aa54f8b /src/ng/q.js
parent8a59d8668c5328b47847931580caf302bfa086e8 (diff)
downloadangular.js-61c0adedc3fb936e268588d8cfc77df0962453c7.tar.bz2
docs($q): fix typo
Diffstat (limited to 'src/ng/q.js')
-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 22c9caa9..b54b91de 100644
--- a/src/ng/q.js
+++ b/src/ng/q.js
@@ -126,7 +126,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