summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/map.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2018-03-27 17:02:04 -0400
committerGlenn Morris <rgm@gnu.org>2018-03-27 17:02:04 -0400
commit1b075a9e38ca6812417f95ed2272e61d875d9e86 (patch)
tree46a1a871304078c86be20761dd5cdf3d67619ef1 /lisp/emacs-lisp/map.el
parent441fe201ea129709ac9807b9b6b30caa45bbd293 (diff)
downloademacs-1b075a9e38ca6812417f95ed2272e61d875d9e86.tar.gz
; Fix some tiny doc typos
Diffstat (limited to 'lisp/emacs-lisp/map.el')
-rw-r--r--lisp/emacs-lisp/map.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/map.el b/lisp/emacs-lisp/map.el
index f2fa8061539..1f6f1ffbcda 100644
--- a/lisp/emacs-lisp/map.el
+++ b/lisp/emacs-lisp/map.el
@@ -207,7 +207,7 @@ MAP can be a list, hash-table or array."
(defun map-do (function map)
"Apply FUNCTION to each element of MAP and return nil.
-FUNCTION.is called with two arguments, the key and the value."
+FUNCTION is called with two arguments, the key and the value."
(funcall (map--dispatch map
:list #'map--do-alist
:hash-table #'maphash