Some small fix
authorTakeshi Yoshino <tyoshino@google.com>
Thu, 14 Nov 2013 02:18:32 +0900
changeset 66 011a7242cc1d
parent 65 a71e1ff16f3f
child 67 f4e80316f0e2
Some small fix
preview.html
--- a/preview.html	Thu Nov 14 02:16:25 2013 +0900
+++ b/preview.html	Thu Nov 14 02:18:32 2013 +0900
@@ -589,12 +589,12 @@
 				<li>Let <var>bytesReadable</var> be the number of bytes in <a>retrievedDataBuffer</a></li>
 				<li>Let <var>bytesToRetrieve</var> be max(max(<a href="#widl-ReadableByteStream-pullAmount">pullAmount</a>, <a>readExactPullAmount</a>, <a>pipePullAmount</a>) - (<var>bytesReadable</var> + <a>bytesBeingOutput</a>) - <a>bytesBeingRetrieved</a>, 0)</li>
 				<li>Set <a>bytesBeingRetrieved</a> to <a>bytesBeingRetrieved</a> + <var>bytesToRetrieve</var></li>
-				<li>Pull <var>bytesToRetrieve</var> more bytes from <a>dataSource</a> possibly asynchronously</li>
+				<li>Retrieve <var>bytesToRetrieve</var> more bytes from <a>dataSource</a> possibly asynchronously</li>
 			</ol>
 		</p>
 
 		<p>
-			When data arrives from <a>dataSource</a>, queue a task which runs the steps below:
+			When bytes arrive from <a>dataSource</a>, queue a task which runs the steps below:
 			<ol>
 				<li>Let <var>bytesRead</var> be the number of bytes arrived</li>
 				<li>Set <a>bytesBeingRetrieved</a> to <a>bytesBeingRetrieved</a> - <var>bytesRead</var></li>
@@ -603,7 +603,7 @@
 		</p>
 
 		<p>
-			When the EOF is reached on <a>dataSource</a>, set <a>eofReached</a>
+			When the EOF is reached on <a>dataSource</a>, set <a>eofReached</a>.
 		</p>
 
 		<section class="section">