1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

* Grammar fix.

This commit is contained in:
Neil Jerram 2001-06-27 18:12:46 +00:00
parent 9c3955ffc6
commit 02d9f38817
3 changed files with 21 additions and 16 deletions

View file

@ -1,3 +1,8 @@
2001-06-27 Neil Jerram <neil@ossau.uklinux.net>
* posix.texi (Network Sockets and Communication): Grammar fix -
thanks to Christopher Cramer!
2001-06-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
* srfi-modules.texi (SRFI-4): Added documentation for the new

View file

@ -2,17 +2,18 @@ Many thanks to the following people for contributing to the Guile
manuals!
Proofreading, bug reports and patches from:
Chris Bitmead
Marcus Daniels
Dirk Herrmann
Dale P. Smith
Steve Tell
Lee Thomas
Masao Uebayashi
Joel Weber
Keith Wright
Chris Bitmead
Christopher Cramer
Marcus Daniels
Dirk Herrmann
Dale P. Smith
Steve Tell
Lee Thomas
Masao Uebayashi
Joel Weber
Keith Wright
New entries from:
Per Bothner
Martin Grabmueller
Thien Thi Nguyen
Per Bothner
Martin Grabmueller
Thien Thi Nguyen

View file

@ -1870,10 +1870,9 @@ Otherwise it is equivalent to @code{setservent stayopen}.
@subsection Network Sockets and Communication
Socket ports can be created using @code{socket} and @code{socketpair}.
The ports are initially unbuffered, to
makes reading and writing to the same port more reliable.
A buffer can be added to the port using @code{setvbuf},
@xref{Ports and File Descriptors}.
The ports are initially unbuffered, to make reading and writing to the
same port more reliable. A buffer can be added to the port using
@code{setvbuf}, @xref{Ports and File Descriptors}.
The convention used for "host" vs "network" addresses is that addresses
are always held in host order at the Scheme level. The procedures in