1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 22:31:12 +02:00

* Fix typos.

This commit is contained in:
Neil Jerram 2001-03-23 16:16:15 +00:00
parent a17bb5fdc2
commit 8d009ee4a2
3 changed files with 6 additions and 3 deletions

View file

@ -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.

View file

@ -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 ]]

View file

@ -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.