org-macs: Fix typo in docstring.

* lisp/org-macs.el (org-match-any-p): Fix typo in docstring.
This commit is contained in:
Nicolas Goaziou 2018-01-31 18:20:25 +01:00
parent 68b076bf52
commit 86f3ef8d80

View file

@ -593,7 +593,7 @@ ones and overrule settings in the other lists."
(looking-at regexp))) (looking-at regexp)))
(defun org-match-any-p (re list) (defun org-match-any-p (re list)
"Non nil if regexp RE matches an element in LIST." "Non-nil if regexp RE matches an element in LIST."
(cl-some (lambda (x) (string-match-p re x)) list)) (cl-some (lambda (x) (string-match-p re x)) list))
(defun org-in-regexp (regexp &optional nlines visually) (defun org-in-regexp (regexp &optional nlines visually)