aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorthorn02014-02-18 11:52:13 +0200
committerJeff Cross2014-03-19 12:39:32 -0700
commit58f5da86645990ef984353418cd1ed83213b111e (patch)
tree452396ec1170eae09c84ecc7f48a04264021bc5e /src
parentfb6062fb9d83545730b993e94ac7482ffd43a62c (diff)
downloadangular.js-58f5da86645990ef984353418cd1ed83213b111e.tar.bz2
docs($q): add mention of Antroid 2.x browser
The Android 2.x browser is not ES5-compatible in that it does not allow use of reserved words as property names. This docs fix adds Android to the note to the `$q` docs which already make it known that string property notation should be used when using the `finally` method on `$q`.
Diffstat (limited to 'src')
-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 eb3b2bed..76e00df0 100644
--- a/src/ng/q.js
+++ b/src/ng/q.js
@@ -112,7 +112,7 @@
*
* Because `finally` is a reserved word in JavaScript and reserved keywords are not supported as
* property names by ES3, you'll need to invoke the method like `promise['finally'](callback)` to
- * make your code IE8 compatible.
+ * make your code IE8 and Android 2.x compatible.
*
* # Chaining promises
*