aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/httpBackend.js
diff options
context:
space:
mode:
authorBastian Buchholz2014-01-03 22:19:37 +0100
committerIgor Minar2014-01-03 16:04:50 -0800
commit32cc6cbb6f06f25aaa7f054a91ac9eb6468f49fc (patch)
tree3f3340256fb84748a48df9f73dd59b430444bf01 /src/ng/httpBackend.js
parent3b1a4fe0c83c7898ecd7261ab4213998ee7be0ec (diff)
downloadangular.js-32cc6cbb6f06f25aaa7f054a91ac9eb6468f49fc.tar.bz2
style($httpBackend): fix typo
Diffstat (limited to 'src/ng/httpBackend.js')
-rw-r--r--src/ng/httpBackend.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ng/httpBackend.js b/src/ng/httpBackend.js
index 29a28cee..29f390e0 100644
--- a/src/ng/httpBackend.js
+++ b/src/ng/httpBackend.js
@@ -71,7 +71,7 @@ function createHttpBackend($browser, createXhr, $browserDefer, callbacks, rawDoc
// response is in the cache. the promise api will ensure that to the app code the api is
// always async
xhr.onreadystatechange = function() {
- // onreadystatechange might by called multiple times with readyState === 4 on mobile webkit caused by
+ // onreadystatechange might get called multiple times with readyState === 4 on mobile webkit caused by
// xhrs that are resolved while the app is in the background (see #5426).
// since calling completeRequest sets the `xhr` variable to null, we just check if it's not null before
// continuing