diff options
author | Neil Jerram <neil@ossau.uklinux.net> | 2001-06-27 18:12:46 +0000 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2001-06-27 18:12:46 +0000 |
commit | 02d9f388177fc440ad7648544cfd1034ca0bbd13 (patch) | |
tree | b0931e3e314b5306ff112831f6fd91c2933fb3ca | |
parent | 9c3955ffc6f19c5e945186c1c6f185119a4cfb22 (diff) |
* Grammar fix.
-rw-r--r-- | doc/ChangeLog | 5 | ||||
-rw-r--r-- | doc/THANKS | 25 | ||||
-rw-r--r-- | doc/posix.texi | 7 |
3 files changed, 21 insertions, 16 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog index 1e135bf9d..dd6b70426 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -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 diff --git a/doc/THANKS b/doc/THANKS index 7db6082eb..53cff29f4 100644 --- a/doc/THANKS +++ b/doc/THANKS @@ -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 diff --git a/doc/posix.texi b/doc/posix.texi index df7e757b5..a823bc360 100644 --- a/doc/posix.texi +++ b/doc/posix.texi @@ -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 |