diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-06-12 12:42:48 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-06-15 09:28:38 +0200 |
commit | c7dec0b2317fedafe6eb9c26d584dd853f47c83d (patch) | |
tree | 9491b67731f268b01552037e9da3dfd03a953681 /doc | |
parent | 3c3270491e78891e988af1b8007c6d8de9071a3c (diff) | |
download | guile-c7dec0b2317fedafe6eb9c26d584dd853f47c83d.tar.gz |
doc: Remove copy/pasted sentence.
* doc/ref/api-io.texi (I/O Extensions): Remove sentence pasted from
'read' when explaining 'write' method.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ref/api-io.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ref/api-io.texi b/doc/ref/api-io.texi index 270a97075..ecbd35585 100644 --- a/doc/ref/api-io.texi +++ b/doc/ref/api-io.texi @@ -1596,7 +1596,7 @@ of bytes read. @item write A port's @code{write} implementation flushes write buffers to the -mutable store. A port's @code{read} implementation fills read buffers. +mutable store. It should write out bytes from the supplied bytevector @code{src}, starting at offset @code{start} and continuing for @code{count} bytes, and return the number of bytes that were written. |