Skip to content

Commit

Permalink
Remove link to the constants DONE and UNSENT (#24535)
Browse files Browse the repository at this point in the history
* Remove link to DONE

* Remove link to UNSENT

* Reprefix the const

* Reprefix the const
  • Loading branch information
teoli2003 authored and pmeenan committed Feb 19, 2023
1 parent 8f0b25f commit 3df2a58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion files/en-us/web/api/xmlhttprequest/abort/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ browser-compat: api.XMLHttpRequest.abort
The **`XMLHttpRequest.abort()`** method aborts the request if
it has already been sent. When a request is aborted, its
{{domxref("XMLHttpRequest.readyState", "readyState")}} is changed to
{{domxref("XMLHttpRequest.UNSENT")}} (0) and the request's
`XMLHttpRequest.UNSENT` (0) and the request's
{{domxref("XMLHttpRequest.status", "status")}} code is set to 0.

## Syntax
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/xmlhttprequest/responsetext/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ data has not been completely received yet.

You know the entire content has been received when the value of
{{domxref("XMLHttpRequest.readyState", "readyState")}} becomes
{{domxref("XMLHttpRequest.DONE", "XMLHttpRequest.DONE")}} (`4`), and
`XMLHttpRequest.DONE` (`4`), and
{{domxref("XMLHttpRequest.status", "status")}} becomes 200 (`"OK"`).

### Exceptions
Expand Down

0 comments on commit 3df2a58

Please sign in to comment.