aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/q.js
diff options
context:
space:
mode:
authorVineet Kumar2013-02-11 19:05:29 -0500
committerVojta Jina2013-02-14 15:18:58 -0800
commit5548328b67e99cdacc0292481fc9c1e3cbc52fca (patch)
tree96a5125bd8d581c0cf3a3a31245ba41639958173 /src/ng/q.js
parent7c6b1e06e83585c174a94b0cdf09921c092861b6 (diff)
downloadangular.js-5548328b67e99cdacc0292481fc9c1e3cbc52fca.tar.bz2
docs($q): fix a few typos
Diffstat (limited to 'src/ng/q.js')
-rw-r--r--src/ng/q.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ng/q.js b/src/ng/q.js
index ef856dca..f3bd1d6e 100644
--- a/src/ng/q.js
+++ b/src/ng/q.js
@@ -102,7 +102,7 @@
* return result + 1;
* });
*
- * // promiseB will be resolved immediately after promiseA is resolved and it's value will be
+ * // promiseB will be resolved immediately after promiseA is resolved and its value will be
* // the result of promiseA incremented by 1
* </pre>
*
@@ -127,7 +127,7 @@
* # Testing
*
* <pre>
- * it('should simulate promise', inject(function($q, $rootSCope) {
+ * it('should simulate promise', inject(function($q, $rootScope) {
* var deferred = $q.defer();
* var promise = deferred.promise;
* var resolvedValue;
@@ -312,7 +312,7 @@ function qFactory(nextTick, exceptionHandler) {
* @methodOf ng.$q
* @description
* Wraps an object that might be a value or a (3rd party) then-able promise into a $q promise.
- * This is useful when you are dealing with on object that might or might not be a promise, or if
+ * This is useful when you are dealing with an object that might or might not be a promise, or if
* the promise comes from a source that can't be trusted.
*
* @param {*} value Value or a promise