diff options
Diffstat (limited to 'lisp/emacs-lisp/map.el')
-rw-r--r-- | lisp/emacs-lisp/map.el | 2 |
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 |