summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2013-09-30 12:46:01 -0400
committerMark H Weaver <mhw@netris.org>2013-09-30 12:46:01 -0400
commit84af582d1e9b5f04270d263a89aaa844750177d3 (patch)
tree8450164678f491a4a2143be5a7fa3fa0f5aa5972
parent803c087e6b72f59ed9e529c1e1ca4fbe34e8eda5 (diff)
downloadguile-84af582d1e9b5f04270d263a89aaa844750177d3.tar.gz
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.
-rw-r--r--THANKS2
-rw-r--r--doc/ref/api-i18n.texi2
-rw-r--r--doc/ref/api-procedures.texi2
3 files changed, 3 insertions, 3 deletions
diff --git a/THANKS b/THANKS
index 222bcfd3a..ea7c8c3cb 100644
--- a/THANKS
+++ b/THANKS
@@ -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
diff --git a/doc/ref/api-i18n.texi b/doc/ref/api-i18n.texi
index 97474a2ff..fa3fe99d0 100644
--- a/doc/ref/api-i18n.texi
+++ b/doc/ref/api-i18n.texi
@@ -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
diff --git a/doc/ref/api-procedures.texi b/doc/ref/api-procedures.texi
index e11479dc2..7fedadffd 100644
--- a/doc/ref/api-procedures.texi
+++ b/doc/ref/api-procedures.texi
@@ -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