From c08ae8f222e47d69b740e9d48ac67912a55d909f Mon Sep 17 00:00:00 2001 From: petrucci4prez Date: Sun, 16 Sep 2018 12:05:46 -0400 Subject: [PATCH] fixed typo in docstring --- conf.org | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/conf.org b/conf.org index 2377ddd..9942fb8 100644 --- a/conf.org +++ b/conf.org @@ -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)))