branch: externals/dash commit 010058481917fe353272effc416581e0736f9c3a Author: Ben Moon <guiltydolp...@gmail.com> Commit: Ben Moon <guiltydolp...@gmail.com>
Correct typo of 'does' to 'do' in -map-when docs --- dash.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dash.el b/dash.el index 19c9a8e..413992d 100644 --- a/dash.el +++ b/dash.el @@ -357,7 +357,7 @@ See also: `-each-indexed'." (nreverse ,r)))) (defun -map-when (pred rep list) - "Return a new list where the elements in LIST that does not match the PRED function + "Return a new list where the elements in LIST that do not match the PRED function are unchanged, and where the elements in LIST that do match the PRED function are mapped through the REP function.