1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

Fix minor mistakes in documentation.

Fixes <http://bugs.gnu.org/15487>.
Reported by Josep Portella Florit <jpf@primfilat.com>.

* doc/ref/api-i18n.texi (i18n Introduction, Text Collation,
  Internationalization, Internationalization):
  LC_MESSAGE --> LC_MESSAGES.

* doc/ref/api-procedures.texi (Compiled Procedures):
  program-lambda-alist --> program-lambda-list.

* THANKS: Fix alignment of Josep Portella Florit.
This commit is contained in:
Mark H Weaver 2013-09-30 12:46:01 -04:00
parent 803c087e6b
commit 84af582d1e
3 changed files with 3 additions and 3 deletions

2
THANKS
View file

@ -74,7 +74,7 @@ For fixes or providing information which led to a fix:
David Fang
Barry Fishman
Kevin J. Fletcher
Josep Portella Florit
Josep Portella Florit
Charles Gagnon
Fu-gangqiang
Aidan Gauland

View file

@ -88,7 +88,7 @@ default @code{C} locale which usually represents conventions in use in
the USA):
@example
(make-locale (list LC_MESSAGE LC_CTYPE) "sv_SE")
(make-locale (list LC_MESSAGES LC_CTYPE) "sv_SE")
@end example
The following example combines the use of Esperanto messages and

View file

@ -297,7 +297,7 @@ list, or @code{#f} if this information is not available.
For example:
@example
(program-lambda-alist
(program-lambda-list
(lambda* (a b #:optional c #:key (d 1) #:rest e)
#t)) @result{}
@end example