aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichał Gołębiowski <m.goleb@gmail.com>2015-05-18 23:03:53 +0200
committerMichał Gołębiowski <m.goleb@gmail.com>2015-05-18 23:03:53 +0200
commit8d88cd599f0e9c674eb17c60d528205384c12433 (patch)
tree814f65ace79088b64e873e550147a579668a22d7
parent61f812b7e7b88dd6e0078c241e4c88905ea51562 (diff)
downloadjquery-8d88cd599f0e9c674eb17c60d528205384c12433.tar.gz
jquery-8d88cd599f0e9c674eb17c60d528205384c12433.zip
Ajax: Rename Spartan to Edge in a comment
-rw-r--r--src/ajax/xhr.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ajax/xhr.js b/src/ajax/xhr.js
index c563992f9..7c6126aa2 100644
--- a/src/ajax/xhr.js
+++ b/src/ajax/xhr.js
@@ -18,8 +18,8 @@ jQuery.ajaxSettings.xhr = window.ActiveXObject !== undefined ?
// Support: IE 10-11
// IE seems to error on cross-domain PATCH requests when ActiveX XHR
// is used. In IE 9+ always use the native XHR.
- // Note: this condition won't catch Spartan as it doesn't define
- // document.documentMode but it also doesn't have ActiveX so it won't
+ // Note: this condition won't catch Edge as it doesn't define
+ // document.documentMode but it also doesn't support ActiveX so it won't
// reach this code.
if ( document.documentMode > 8 ) {
return createStandardXHR();