diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2011-02-08 21:20:57 +0100 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2011-02-09 22:28:49 +0000 |
commit | ecb8733562079227b96b1a2884cd3cce6d3974bb (patch) | |
tree | 41787dd6a4519f19fd0c4f6d5d80625f3ac08ef0 /doc/ref/api-io.texi | |
parent | e7450642312f7274c111a6efc05f24b80389ed64 (diff) | |
download | guile-ecb8733562079227b96b1a2884cd3cce6d3974bb.tar.gz |
docs: fix typos in manual, and a couple in code comments.
* doc/ref/api-binding.texi, doc/ref/api-compound.texi,
doc/ref/api-control.texi, doc/ref/api-debug.texi,
doc/ref/api-io.texi, doc/ref/api-macros.texi,
doc/ref/api-procedures.texi, doc/ref/api-scheduling.texi,
doc/ref/api-undocumented.texi, doc/ref/api-utility.texi,
doc/ref/compiler.texi, doc/ref/goops.texi,
doc/ref/libguile-concepts.texi, doc/ref/misc-modules.texi,
doc/ref/posix.texi, doc/ref/r6rs.texi, doc/ref/slib.texi,
doc/ref/srfi-modules.texi, doc/ref/sxml-match.texi,
doc/ref/tools.texi, doc/ref/vm.texi, doc/ref/web.texi,
doc/sources/env.texi, doc/sources/jimb-org.texi,
doc/sources/scheme-concepts.texi, doc/sources/unix.texi,
module/ice-9/optargs.scm: Fix typos.
* doc/r4rs/r5rs.texi: Likewise. Do not capitalize code symbols
even at the start of a sentence.
* doc/ref/api-data.texi: Likewise. Also, remove executable bit.
Diffstat (limited to 'doc/ref/api-io.texi')
-rw-r--r-- | doc/ref/api-io.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ref/api-io.texi b/doc/ref/api-io.texi index e02daeb93..52dfdd4fe 100644 --- a/doc/ref/api-io.texi +++ b/doc/ref/api-io.texi @@ -871,7 +871,7 @@ requested, @code{open-file} throws an exception. When the file is opened, this procedure will scan for a coding declaration (@pxref{Character Encoding of Source Files}). If present will use that encoding for interpreting the file. Otherwise, the -port's encoding will be used. To supress this behavior, open +port's encoding will be used. To suppress this behavior, open the file in binary mode and then set the port encoding explicitly using @code{set-port-encoding!}. @@ -976,7 +976,7 @@ Determine whether @var{obj} is a port that is related to a file. @cindex String port @cindex Port, string -The following allow string ports to be opened by analogy to R4R* +The following allow string ports to be opened by analogy to R4RS file port facilities: With string ports, the port-encoding is treated differently than other |