Skip to content

Commit

Permalink
Fix bikeshed syntax errors (w3c-fedid#492)
Browse files Browse the repository at this point in the history
It seems newer bikeshed versions show this error:
LINE 681:91: Missing attribute value.

Fix by using <var ignore> instead of <var ignore=>.
  • Loading branch information
cbiesinger authored Aug 11, 2023
1 parent ba6292b commit 12fc0e5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions spec/index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ or failure.
[pull request](https://github.com/whatwg/fetch/pull/1533) for details.

1. Let |config|, |configInWellKnown| both be null.
1. [=Fetch request=] with |wellKnownRequest| and |globalObject|, and with <var ignore=>processResponseConsumeBody</var>
1. [=Fetch request=] with |wellKnownRequest| and |globalObject|, and with <var ignore>processResponseConsumeBody</var>
set to the following steps given a <a spec=fetch for=/>response</a> |response| and |responseBody|:
1. Let |json| be the result of [=extract the JSON fetch response=] from |response| and
|responseBody|.
Expand Down Expand Up @@ -725,7 +725,7 @@ or failure.
with [=request/mode=] set to "user-agent-no-cors". See the relevant
[pull request](https://github.com/whatwg/fetch/pull/1533) for details.

1. [=Fetch request=] with |configRequest| and |globalObject|, and with <var ignore=>processResponseConsumeBody</var>
1. [=Fetch request=] with |configRequest| and |globalObject|, and with <var ignore>processResponseConsumeBody</var>
set to the following steps given a <a spec=fetch for=/>response</a> |response| and |responseBody|:
1. Let |json| be the result of [=extract the JSON fetch response=] from |response| and
|responseBody|.
Expand Down Expand Up @@ -819,7 +819,7 @@ To <dfn>fetch the accounts list</dfn> given an {{IdentityProviderAPIConfig}} |co
[pull request](https://github.com/whatwg/fetch/pull/1533) for details.

1. Let |accountsList| be null.
1. [=Fetch request=] with |request| and |globalObject|, and with <var ignore=>processResponseConsumeBody</var>
1. [=Fetch request=] with |request| and |globalObject|, and with <var ignore>processResponseConsumeBody</var>
set to the following steps given a <a spec=fetch for=/>response</a> |response| and |responseBody|:
1. Let |json| be the result of [=extract the JSON fetch response=] from |response| and
|responseBody|.
Expand Down Expand Up @@ -880,7 +880,7 @@ To <dfn>fetch the account picture</dfn> given an {{IdentityProviderAccount}} |ac
with [=request/mode=] set to "user-agent-no-cors". See the relevant
[pull request](https://github.com/whatwg/fetch/pull/1533) for details.

1. [=Fetch request=] with |pictureRequest| and |globalObject|, and with <var ignore=>processResponseConsumeBody</var>
1. [=Fetch request=] with |pictureRequest| and |globalObject|, and with <var ignore>processResponseConsumeBody</var>
set to the following steps given a <var ignore=''>response</var> and a |responseBody|:
1. If |responseBody| is null or failure, the user agent may choose an arbitrary placeholder image
and associate it with the |account|.
Expand Down Expand Up @@ -942,7 +942,7 @@ To <dfn>fetch an identity assertion</dfn> given a {{USVString}}
[pull request](https://github.com/whatwg/fetch/pull/1533) for details.

1. Let |credential| be null.
1. [=Fetch request=] with |request| and |globalObject|, and with <var ignore=>processResponseConsumeBody</var>
1. [=Fetch request=] with |request| and |globalObject|, and with <var ignore>processResponseConsumeBody</var>
set to the following steps given a <a spec=fetch for=/>response</a> |response| and |responseBody|:
1. Let |json| be the result of [=extract the JSON fetch response=] from |response| and
|responseBody|.
Expand Down Expand Up @@ -1041,7 +1041,7 @@ an {{IdentityProviderConfig}} |provider|, run the following steps. This returns
[pull request](https://github.com/whatwg/fetch/pull/1533) for details.

1. Let |metadata| be null.
1. [=Fetch request=] with |request| and |globalObject|, and with <var ignore=>processResponseConsumeBody</var>
1. [=Fetch request=] with |request| and |globalObject|, and with <var ignore>processResponseConsumeBody</var>
set to the following steps given a <a spec=fetch for=/>response</a> |response| and |responseBody|:
1. Let |json| be the result of [=extract the JSON fetch response=] from |response| and
|responseBody|.
Expand Down

0 comments on commit 12fc0e5

Please sign in to comment.