diff options
author | Mark H Weaver <mhw@netris.org> | 2013-09-30 12:46:01 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2013-09-30 12:46:01 -0400 |
commit | 84af582d1e9b5f04270d263a89aaa844750177d3 (patch) | |
tree | 8450164678f491a4a2143be5a7fa3fa0f5aa5972 /doc/ref | |
parent | 803c087e6b72f59ed9e529c1e1ca4fbe34e8eda5 (diff) |
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.
Diffstat (limited to 'doc/ref')
-rw-r--r-- | doc/ref/api-i18n.texi | 2 | ||||
-rw-r--r-- | doc/ref/api-procedures.texi | 2 |
2 files changed, 2 insertions, 2 deletions
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 |