diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2011-02-07 00:29:51 +0100 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2011-02-09 22:28:49 +0000 |
commit | ffb62a43dcfe537c3f5773e9d7b2f8a46fdb9b47 (patch) | |
tree | 947f0e30e70f710cd763af7b2bef6c5b61e5fc77 /libguile/srfi-1.c | |
parent | ecb8733562079227b96b1a2884cd3cce6d3974bb (diff) | |
download | guile-ffb62a43dcfe537c3f5773e9d7b2f8a46fdb9b47.tar.gz |
fix typos in the manual bits generated from source comments.
* libguile/bitvectors.c, libguile/chars.c,
libguile/deprecated.c, libguile/numbers.c, libguile/random.c,
libguile/read.c, libguile/root.c, libguile/srfi-1.c,
libguile/srfi-13.c, libguile/srfi-14.c, libguile/uniform.c:
Fix typos, add missing newlines.
Diffstat (limited to 'libguile/srfi-1.c')
-rw-r--r-- | libguile/srfi-1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/srfi-1.c b/libguile/srfi-1.c index 7931138b2..5c0750451 100644 --- a/libguile/srfi-1.c +++ b/libguile/srfi-1.c @@ -1026,7 +1026,7 @@ SCM_DEFINE (scm_srfi1_assoc, "assoc", 2, 1, 0, SCM_DEFINE (scm_srfi1_partition, "partition", 2, 0, 0, (SCM pred, SCM list), "Partition the elements of @var{list} with predicate @var{pred}.\n" - "Return two values: the list of elements satifying @var{pred} and\n" + "Return two values: the list of elements satisfying @var{pred} and\n" "the list of elements @emph{not} satisfying @var{pred}. The order\n" "of the output lists follows the order of @var{list}. @var{list}\n" "is not mutated. One of the output lists may share memory with @var{list}.\n") @@ -1185,7 +1185,7 @@ SCM_DEFINE (scm_srfi1_remove_x, "remove!", 2, 0, 0, SCM_DEFINE (scm_srfi1_take_right, "take-right", 2, 0, 0, (SCM lst, SCM n), - "Return the a list containing the @var{n} last elements of\n" + "Return a list containing the @var{n} last elements of\n" "@var{lst}.") #define FUNC_NAME s_scm_srfi1_take_right { |