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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add remaining domintro boxes #1161

Merged
merged 2 commits into from
Feb 4, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions fetch.bs
Original file line number Diff line number Diff line change
Expand Up @@ -5292,8 +5292,8 @@ new Headers(meta2);
<dd><p>Removes a header from <var>headers</var>.

<dt><code><var>headers</var> . <a method for=Headers lt=get()>get</a>(<var>name</var>)</code>
<dd><p>Returns the values of all headers whose name is <var>name</var>, separated by a comma and a
space.
<dd><p>Returns as a string the values of all headers whose name is <var>name</var>, separated by a
comma and a space.

<dt><code><var>headers</var> . <a method for=Headers lt=has()>has</a>(<var>name</var>)</code>
<dd><p>Returns whether there is a header whose name is <var>name</var>.
Expand All @@ -5302,7 +5302,7 @@ new Headers(meta2);
<dd><p>Replaces the value of the first header whose name is <var>name</var> with <var>value</var>
and removes any remaining headers whose name is <var>name</var>.

<dt><code>for([<var>name</var>, <var>value</var>] of <var>headers</var>)</code>
<dt><code>for(const [<var>name</var>, <var>value</var>] of <var>headers</var>)</code>
<dd><p><var>headers</var> can be iterated over.
</dl>

Expand Down