branch: externals/dash commit f1c60c4f114e6f7256100364e04bbd32552b0eaf Merge: 4ae329a 0100584 Author: Magnar Sveen <magn...@gmail.com> Commit: GitHub <nore...@github.com>
Merge pull request #193 from GuiltyDolphin/fix-map-when-typo 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.