Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yutakahirano committed Dec 20, 2016
1 parent 836a500 commit 3bd43ea
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions fetch.bs
Original file line number Diff line number Diff line change
Expand Up @@ -576,8 +576,8 @@ user-agent-defined <a for=header>value</a> for the

<ul>
<li>
<p>A <dfn export for=body id=concept-body-stream>stream</dfn> (a
{{ReadableStream}} object or null).
<p>A <dfn export for=body id=concept-body-stream>stream</dfn> (null or a
{{ReadableStream}} object).

<p class=XXX><a href=https://github.com/whatwg/streams/issues/379>This might become a
<code>ReadableByteStream</code> object</a>. While the type might change, the behavior specified
Expand Down Expand Up @@ -3106,16 +3106,17 @@ steps:

<li><p>Let <var>body</var> be <var>request</var>'s <a for=request>body</a>.

<li>
<p>If <var>body</var> is non-null, then set <var>request</var>'s <a for=request>body</a> to a
<li><p>Set <var>httpRequest</var>'s <a for=request>body</a> to <var>body</var>.

<li><p>If <var>body</var> is non-null, then set <var>request</var>'s <a for=request>body</a> to a
new <a for=/>body</a> whose <a for=body>stream</a> is null and whose <a for=body>source</a> is
<var>body</var>'s <a for=body>source</a>.

<p class="note no-backref">Here we do not <a for=request>clone</a> <var>request</var> in order
to reduce memory consumption. <var>request</var> can be reused with redirects, authentication,
and proxy authentication.
</ol>

<p class="note no-backref">Here we do not <a for=request>clone</a> <var>request</var> in order
to reduce memory consumption. <var>request</var> can be reused with redirects, authentication,
and proxy authentication.

<li>
<p>Let <i>credentials flag</i> be set if one of

Expand Down

0 comments on commit 3bd43ea

Please sign in to comment.