diff --git a/xhr.bs b/xhr.bs
index f6bd6c1..1722124 100644
--- a/xhr.bs
+++ b/xhr.bs
@@ -1576,32 +1576,32 @@ steps are:
The {{XMLHttpRequest/readyState}} attribute changes
value, except when it changes to UNSENT.
|
- loadstart
+ | loadstart
| {{ProgressEvent}}
| The fetch initiates.
|
- progress
+ | progress
| {{ProgressEvent}}
| Transmitting data.
|
- abort
+ | abort
| {{ProgressEvent}}
| When the fetch has been aborted. For instance, by invoking the
{{XMLHttpRequest/abort()}} method.
|
- error
+ | error
| {{ProgressEvent}}
| The fetch failed.
|
- load
+ | load
| {{ProgressEvent}}
| The fetch succeeded.
|
- timeout
+ | timeout
| {{ProgressEvent}}
| The author specified timeout has passed before the fetch completed.
|
- loadend
+ | loadend
| {{ProgressEvent}}
| The fetch completed (success or failure).
|