Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Editorial: avoid normative keywords in domintro block #734

Merged
merged 1 commit into from
May 25, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions fetch.bs
Original file line number Diff line number Diff line change
Expand Up @@ -5026,7 +5026,7 @@ initially a new {{AbortSignal}} object.
<var>input</var> is a string, and <var>input</var>'s {{Request/url}} if <var>input</var> is a
{{Request}} object.

<p>The optional <var>init</var> argument is an object whose properties can be set as follows:</p>
<p>The <var>init</var> argument is an object whose properties can be set as follows:</p>

<dl>
<dt>{{RequestInit/method}}
Expand Down Expand Up @@ -5059,8 +5059,9 @@ initially a new {{AbortSignal}} object.
<var>request</var>'s {{Request/cache}}.

<dt>{{RequestInit/redirect}}
<dd>A string indicating whether or not <var>request</var> should automatically follow redirects,
result in an error, or manually follow redirects. Sets <var>request</var>'s {{Request/redirect}}.
<dd>A string indicating whether <var>request</var> follows redirects, results in an error upon
encountering a redirect, or returns the redirect (in an opaque fashion). Sets
<var>request</var>'s {{Request/redirect}}.

<dt>{{RequestInit/integrity}}
<dd>A cryptographic hash of the resource to be fetched by <var>request</var>. Sets
Expand Down Expand Up @@ -5121,8 +5122,7 @@ initially a new {{AbortSignal}} object.

<dt><code><var>request</var> . <a attribute for=Request>integrity</a></code>
<dd>Returns <var>request</var>'s subresource integrity metadata, which is a cryptographic hash of
the resource being fetched. Its value may consist of multiple hashes separated by whitespace.
[[SRI]]
the resource being fetched. Its value consists of multiple hashes separated by whitespace. [[SRI]]

<dt><code><var>request</var> . <a attribute for=Request>keepalive</a></code>
<dd>Returns a boolean indicating whether or not <var>request</var> can outlive the global in which
Expand Down