]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fcompleting_read): Fix typo in docstring.
authorRomain Francoise <romain@orebokech.com>
Tue, 14 Nov 2006 19:25:40 +0000 (19:25 +0000)
committerRomain Francoise <romain@orebokech.com>
Tue, 14 Nov 2006 19:25:40 +0000 (19:25 +0000)
src/ChangeLog
src/minibuf.c

index 00974511e94787a4e092b8c67197e6cd0c49d731..c799feb1b3a5a4632ee32e585230c224be35e916 100644 (file)
@@ -1,3 +1,7 @@
+2006-11-14  Romain Francoise  <romain@orebokech.com>
+
+       * minibuf.c (Fcompleting_read): Fix typo in docstring.
+
 2006-11-14  Kenichi Handa  <handa@m17n.org>
 
        * coding.c (code_convert_region): Initialize
index 46c54d8724fcd3fcfbbfa6d6406b32ceec760fa7..d17e9238a1cc1c887d076a8be22914eafcc83646 100644 (file)
@@ -1683,7 +1683,7 @@ Lisp_Object Vminibuffer_completing_file_name;
 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