From c7dec0b2317fedafe6eb9c26d584dd853f47c83d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 12 Jun 2020 12:42:48 +0200 Subject: [PATCH] doc: Remove copy/pasted sentence. * doc/ref/api-io.texi (I/O Extensions): Remove sentence pasted from 'read' when explaining 'write' method. --- doc/ref/api-io.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.