branch: externals/dash
commit 8a46d3c7c126d3e979f7f9b36867a413694cd8df
Author: Matus Goljer <matus.gol...@gmail.com>
Commit: Matus Goljer <matus.gol...@gmail.com>

    [#170] Add a note about -keep on -filter.
---
 dash.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dash.el b/dash.el
index e486a75..5f9f840 100644
--- a/dash.el
+++ b/dash.el
@@ -220,7 +220,9 @@ See also: `-reduce-r-from', `-reduce'"
 (defun -filter (pred list)
   "Return a new list of the items in LIST for which PRED returns a non-nil 
value.
 
-Alias: `-select'"
+Alias: `-select'
+
+See also: `-keep'"
   (--filter (funcall pred it) list))
 
 (defalias '-select '-filter)

Reply via email to