Fix typos

This commit is contained in:
Alexey Pyltsyn 2019-05-29 20:03:39 +03:00
parent 3dd9fb053a
commit 16e7d07dc0
5 changed files with 5 additions and 5 deletions

View file

@ -495,7 +495,7 @@ There are actually more events, the [modern specification](http://www.w3.org/TR/
- `loadstart` -- the request has started.
- `progress` -- a data packet of the response has arrived, the whole response body at the moment is in `responseText`.
- `abort` -- the request was canceled by the call `xhr.abort()`.
- `error` -- connection error has occured, e.g. wrong domain name. Doesn't happen for HTTP-errors like 404.
- `error` -- connection error has occurred, e.g. wrong domain name. Doesn't happen for HTTP-errors like 404.
- `load` -- the request has finished successfully.
- `timeout` -- the request was canceled due to timeout (only happens if it was set).
- `loadend` -- the request has finished (succeffully or not).