diff options
author | Brian Gough <bjg@network-theory.co.uk> | 2009-12-15 10:16:14 +0000 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2009-12-18 00:53:34 +0000 |
commit | 72b3aa56afc776506a0b51c008c808a536a4f1c3 (patch) | |
tree | ac037ba759eb547c6923070484ac17b1ae0eab96 /doc/ref/srfi-modules.texi | |
parent | 2e4ef7eda16ccf708f9822573d016567eb916f43 (diff) | |
download | guile-72b3aa56afc776506a0b51c008c808a536a4f1c3.tar.gz |
more typo fixes
More spelling corrections and fixes for doubled words (e.g. "the the")
--
Brian Gough
Network Theory Ltd,
Publishing Free Software Manuals --- http://www.network-theory.co.uk/
>From 7be02beedc739c32cce2c8ec8f4ac814c994a13f Mon Sep 17 00:00:00 2001
From: Brian Gough <bjg@gnu.org>
Date: Mon, 14 Dec 2009 22:06:22 +0000
Subject: [PATCH] fix various documentation typos (spelling & doubled words)
Diffstat (limited to 'doc/ref/srfi-modules.texi')
-rw-r--r-- | doc/ref/srfi-modules.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ref/srfi-modules.texi b/doc/ref/srfi-modules.texi index 5e8d762b6..043490ddb 100644 --- a/doc/ref/srfi-modules.texi +++ b/doc/ref/srfi-modules.texi @@ -2815,7 +2815,7 @@ specified by @var{c}. If @var{c} is a compound condition, extract the field values from the subcondition belonging to @var{type} that appeared first in the call to -@code{make-compound-condition} that created the the condition. +@code{make-compound-condition} that created the condition. @end deffn Convenience macros are also available to create condition types and @@ -3030,7 +3030,7 @@ the new locations. (my-param) @result{} 456 @end example -Parameters are like dynamically bound variables in other Lisp dialets. +Parameters are like dynamically bound variables in other Lisp dialects. They allow an application to establish parameter settings (as the name suggests) just for the execution of a particular bit of code, restoring when done. Examples of such parameters might be @@ -3038,7 +3038,7 @@ case-sensitivity for a search, or a prompt for user input. Global variables are not as good as parameter objects for this sort of thing. Changes to them are visible to all threads, but in Guile -parameter object locations are per-thread, thereby truely limiting the +parameter object locations are per-thread, thereby truly limiting the effect of @code{parameterize} to just its dynamic execution. Passing arguments to functions is thread-safe, but that soon becomes |