summaryrefslogtreecommitdiff
path: root/fatfs/documents/doc/forward.html
diff options
context:
space:
mode:
Diffstat (limited to 'fatfs/documents/doc/forward.html')
-rw-r--r--fatfs/documents/doc/forward.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/fatfs/documents/doc/forward.html b/fatfs/documents/doc/forward.html
index ada0a05..fdb5f49 100644
--- a/fatfs/documents/doc/forward.html
+++ b/fatfs/documents/doc/forward.html
@@ -54,7 +54,7 @@ FRESULT f_forward (
<div class="para desc">
<h4>Description</h4>
-<p>The <tt>f_forward</tt> function reads the data from the file and forward it to the outgoing stream without data buffer. This is suitable for small memory system because it does not require any data buffer at application module. The file pointer of the file object increases in number of bytes forwarded. In case of <tt class="arg">*bf</tt> is less than <tt class="arg">btf</tt> without error, it means the requested bytes could not be transferred due to end of file or stream goes busy during data transfer.</p>
+<p>The <tt>f_forward</tt> function reads the data from the file and forward it to the outgoing stream. This function is suitable for small memory system, because it does not require any data buffer in the application module. The file pointer of the file object advances in number of bytes forwarded. In case of <tt class="arg">*bf</tt> is less than <tt class="arg">btf</tt> without error, it means the requested size of data could not be transferred due to end of file or stream goes busy during data transfer.</p>
</div>
@@ -65,7 +65,7 @@ FRESULT f_forward (
<div class="para use">
-<h4>Example (Audio playback)</h4>
+<h4>Example</h4>
<pre>
<span class="c">/*------------------------------------------------------------------------*/</span>
<span class="c">/* Sample code of data transfer function to be called back from f_forward */</span>