Skip to content

Commit 3df2a58

Browse files
teoli2003pmeenan
authored andcommitted
Remove link to the constants DONE and UNSENT (#24535)
* Remove link to DONE * Remove link to UNSENT * Reprefix the const * Reprefix the const
1 parent 8f0b25f commit 3df2a58

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

files/en-us/web/api/xmlhttprequest/abort/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ browser-compat: api.XMLHttpRequest.abort
1010
The **`XMLHttpRequest.abort()`** method aborts the request if
1111
it has already been sent. When a request is aborted, its
1212
{{domxref("XMLHttpRequest.readyState", "readyState")}} is changed to
13-
{{domxref("XMLHttpRequest.UNSENT")}} (0) and the request's
13+
`XMLHttpRequest.UNSENT` (0) and the request's
1414
{{domxref("XMLHttpRequest.status", "status")}} code is set to 0.
1515

1616
## Syntax

files/en-us/web/api/xmlhttprequest/responsetext/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ data has not been completely received yet.
2424

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

3030
### Exceptions

0 commit comments

Comments
 (0)