diff options
author | Neil Jerram <neil@ossau.uklinux.net> | 2001-03-23 16:16:15 +0000 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2001-03-23 16:16:15 +0000 |
commit | 8d009ee4a25b1f429186872198b969ca2a13436d (patch) | |
tree | 7b70e6476a0a6a3b9e5c73bbafd45743a422255b | |
parent | a17bb5fdc22fae3b19c08ebd1becdf63fc929f17 (diff) | |
download | guile-8d009ee4a25b1f429186872198b969ca2a13436d.tar.gz |
* Fix typos.
-rw-r--r-- | doc/ChangeLog | 3 | ||||
-rw-r--r-- | doc/intro.texi | 4 | ||||
-rwxr-xr-x | doc/scheme-data.texi | 2 |
3 files changed, 6 insertions, 3 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog index a8fa6345e..86d5ad418 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,5 +1,8 @@ 2001-03-23 Neil Jerram <neil@ossau.uklinux.net> + * intro.texi (Writing Extensions for Guile), scheme-data.texi + (Lists): Fix typos. + * guile-tut.texi, ChangeLog-guile-doc-tutorial: Added to CVS. It seems that I somehow missed these out when I moved everything from guile-doc to guile-core. diff --git a/doc/intro.texi b/doc/intro.texi index ffd2346c5..933fefa40 100644 --- a/doc/intro.texi +++ b/doc/intro.texi @@ -1,4 +1,4 @@ -@c $Id: intro.texi,v 1.2 2001-03-12 00:50:08 mvo Exp $ +@c $Id: intro.texi,v 1.3 2001-03-23 16:16:15 ossau Exp $ @page @node What is Guile? @@ -591,7 +591,7 @@ make use of an embedded Guile interpreter. But sometimes, all you want to do is make new primitive procedures and data types available to the Scheme programmer. Writing a new version of @code{guile} is inconvenient in this case and it would in fact make the life of the -users of your new fetaures needlessly hard. +users of your new features needlessly hard. @c [[ the following is probably a bit longwinded ]] diff --git a/doc/scheme-data.texi b/doc/scheme-data.texi index 7bbf89760..22cdf2888 100755 --- a/doc/scheme-data.texi +++ b/doc/scheme-data.texi @@ -2920,7 +2920,7 @@ Return a list containing @var{objs}, the arguments to @deffn primitive cons* arg . rest Like @code{list}, but the last arg provides the tail of the constructed list, returning @code{(cons @var{arg1} (cons -@var{arg2} (cons @dots{} @var{argn}))). Requires at least one +@var{arg2} (cons @dots{} @var{argn})))}. Requires at least one argument. If given one argument, that argument is returned as result. This function is called @code{list*} in some other Schemes and in Common LISP. |