diff src/minibuf.c @ 74006:1bd5746091de

(Fcompleting_read): Fix typo in docstring.
author Romain Francoise <romain@orebokech.com>
date Tue, 14 Nov 2006 19:25:40 +0000
parents 726825bcce52
children 6d7e4ace438f c71725faff1a dbe3f29e61d6
line wrap: on
line diff
--- a/src/minibuf.c	Tue Nov 14 16:46:28 2006 +0000
+++ b/src/minibuf.c	Tue Nov 14 19:25:40 2006 +0000
@@ -1683,7 +1683,7 @@
 DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 8, 0,
        doc: /* Read a string in the minibuffer, with completion.
 PROMPT is a string to prompt with; normally it ends in a colon and a space.
-TABLE can be an list of strings, an alist, an obarray or a hash table.
+TABLE can be a list of strings, an alist, an obarray or a hash table.
 TABLE can also be a function to do the completion itself.
 PREDICATE limits completion to a subset of TABLE.
 See `try-completion' and `all-completions' for more details