Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yutakahirano committed Aug 9, 2016
1 parent 9af7307 commit 283179d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions Overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -1662,10 +1662,9 @@ <h4 id="readablestream"><span class="secno">3.9.1 </span>ReadableStream</h4>
</ol>

<p>To <dfn id="concept-read-chunk-from-readablestream" title="concept-read-chunk-from-ReadableStream">read a chunk</dfn> from a
<a href="#concept-readablestream"><code title="concept-ReadableStream">ReadableStream</code></a> object with <var>reader</var> and
<var>reason</var>, return the result of calling
<a href="https://streams.spec.whatwg.org/#read-from-readable-stream-reader"><code class="external" data-anolis-spec="streams">ReadFromReadableStreamReader</code></a>(<var>reader</var>,
<var>reason</var>).
<a href="#concept-readablestream"><code title="concept-ReadableStream">ReadableStream</code></a> object with <var>reader</var>, return the
result of calling
<a href="https://streams.spec.whatwg.org/#read-from-readable-stream-reader"><code class="external" data-anolis-spec="streams">ReadFromReadableStreamReader</code></a>(<var>reader</var>).

<p>To <dfn id="concept-read-all-bytes-from-readablestream" title="concept-read-all-bytes-from-ReadableStream">read all bytes</dfn> from a
<a href="#concept-readablestream"><code title="concept-ReadableStream">ReadableStream</code></a> object with <var>reader</var>, run these
Expand Down Expand Up @@ -1700,9 +1699,10 @@ <h4 id="readablestream"><span class="secno">3.9.1 </span>ReadableStream</h4>
</ol>

<p>To <dfn id="concept-cancel-readablestream" title="concept-cancel-ReadableStream">cancel</dfn> a
<a href="#concept-readablestream"><code title="concept-ReadableStream">ReadableStream</code></a> object with <var>reader</var>, return the
result of calling
<a href="https://streams.spec.whatwg.org/#readable-stream-reader-cancel"><code class="external" data-anolis-spec="streams">ReadableStreamReaderGenericCancel</code></a>(<var>reader</var>).
<a href="#concept-readablestream"><code title="concept-ReadableStream">ReadableStream</code></a> object with <var>reader</var> and
<var>reason</var>, return the result of calling
<a href="https://streams.spec.whatwg.org/#readable-stream-reader-cancel"><code class="external" data-anolis-spec="streams">ReadableStreamReaderGenericCancel</code></a>(<var>reader</var>,
<var>reason</var>).

<p class="note no-backref">Because the reader grants exclusive access, the actual mechanism of how
to read cannot be observed. Implementations could use more direct mechanism if convenient.
Expand Down
14 changes: 7 additions & 7 deletions Overview.src.html
Original file line number Diff line number Diff line change
Expand Up @@ -1590,10 +1590,9 @@ <h4>ReadableStream</h4>
</ol>

<p>To <dfn title=concept-read-chunk-from-ReadableStream>read a chunk</dfn> from a
<code title=concept-ReadableStream>ReadableStream</code> object with <var>reader</var> and
<var>reason</var>, return the result of calling
<code data-anolis-spec=streams>ReadFromReadableStreamReader</code>(<var>reader</var>,
<var>reason</var>).
<code title=concept-ReadableStream>ReadableStream</code> object with <var>reader</var>, return the
result of calling
<code data-anolis-spec=streams>ReadFromReadableStreamReader</code>(<var>reader</var>).

<p>To <dfn title=concept-read-all-bytes-from-ReadableStream>read all bytes</dfn> from a
<code title=concept-ReadableStream>ReadableStream</code> object with <var>reader</var>, run these
Expand Down Expand Up @@ -1628,9 +1627,10 @@ <h4>ReadableStream</h4>
</ol>

<p>To <dfn title=concept-cancel-ReadableStream>cancel</dfn> a
<code title=concept-ReadableStream>ReadableStream</code> object with <var>reader</var>, return the
result of calling
<code data-anolis-spec=streams>ReadableStreamReaderGenericCancel</code>(<var>reader</var>).
<code title=concept-ReadableStream>ReadableStream</code> object with <var>reader</var> and
<var>reason</var>, return the result of calling
<code data-anolis-spec=streams>ReadableStreamReaderGenericCancel</code>(<var>reader</var>,
<var>reason</var>).

<p class="note no-backref">Because the reader grants exclusive access, the actual mechanism of how
to read cannot be observed. Implementations could use more direct mechanism if convenient.
Expand Down

0 comments on commit 283179d

Please sign in to comment.