diff options
Diffstat (limited to 'components/net/http_loader.rs')
-rw-r--r-- | components/net/http_loader.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/net/http_loader.rs b/components/net/http_loader.rs index 16be70795a7..d544c307401 100644 --- a/components/net/http_loader.rs +++ b/components/net/http_loader.rs @@ -250,7 +250,7 @@ reason: \"certificate verify failed\" }]"; if response.status.class() == StatusClass::Redirection { match response.headers.get::<Location>() { Some(&Location(ref new_url)) => { - // CORS (http://fetch.spec.whatwg.org/#http-fetch, status section, point 9, 10) + // CORS (https://fetch.spec.whatwg.org/#http-fetch, status section, point 9, 10) match load_data.cors { Some(ref c) => { if c.preflight { |