- From: Francois Marier <notifications@github.com>
- Date: Mon, 08 Nov 2021 18:13:50 -0800
- To: whatwg/fetch <fetch@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 9 November 2021 02:14:02 UTC
```
$ make
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 335k 0 288 100 335k 32 38918 0:00:08 0:00:08 --:--:-- 62
Error running preprocessor, returned code: 2.
LINK ERROR: No 'dfn' refs found for 'aborted flag' with for='['AbortSignal']'.
<a data-link-for="AbortSignal" data-link-type="dfn" data-lt="aborted flag">aborted flag</a>
✘ Did not generate, due to fatal errors
make: *** [Makefile:5: remote] Error 22
```
Removing the offending link solves that problem:
```
--- a/fetch.bs
+++ b/fetch.bs
@@ -7476,7 +7476,7 @@ <h3 id=fetch-method>Fetch method</h3>
<li><p>Let <var>request</var> be <var>requestObject</var>'s <a for=Request>request</a>.
<li>
- <p>If <var>requestObject</var>'s <a for=Request>signal</a>'s <a for=AbortSignal>aborted flag</>
+ <p>If <var>requestObject</var>'s <a for=Request>signal</a>'s aborted flag
is set, then:
<ol>
```
but perhaps the best fix is to add the missing definition instead.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/issues/1349
Received on Tuesday, 9 November 2021 02:14:02 UTC