fixed typo in docstring

This commit is contained in:
petrucci4prez 2018-09-16 12:05:46 -04:00
parent 4883d7ecb1
commit c08ae8f222
1 changed files with 1 additions and 2 deletions

View File

@ -256,8 +256,7 @@ event of an error or nonlocal exit."
** functions
#+BEGIN_SRC emacs-lisp
(defun nd/filter-list-prefix (prefix str-list)
"Return a subset of tags-list whose first character matches prefix.
tags-list defaults to org-tag-alist if not given."
"Return a subset of STR-LIST whose first characters are PREFIX."
(seq-filter (lambda (i)
(and (stringp i)
(string-prefix-p prefix i)))