branch: externals/dash
commit 0297166f416a9f2e865d76d2e5c32baf07af3a42
Author: Wilfred Hughes <whug...@ahl.com>
Commit: Wilfred Hughes <whug...@ahl.com>

    Docs: Clarify that we don't modify the original list
    
    Fixes #231
---
 README.md       | 2 +-
 dash.info       | 2 +-
 dash.texi       | 2 +-
 dev/examples.el | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index f89fe5c..6f5a856 100644
--- a/README.md
+++ b/README.md
@@ -111,7 +111,7 @@ Functions returning a sublist of the original list.
 ### List to list
 
 
-Bag of various functions which modify input list.
+Functions returning a modified copy of the input list.
 
 * [-keep](#-keep-fn-list) `(fn list)`
 * [-concat](#-concat-rest-lists) `(&rest lists)`
diff --git a/dash.info b/dash.info
index 4e51a6d..ed4cd66 100644
--- a/dash.info
+++ b/dash.info
@@ -544,7 +544,7 @@ File: dash.info,  Node: List to list,  Next: Reductions,  
Prev: Sublist selectio
 2.3 List to list
 ================
 
-Bag of various functions which modify input list.
+Functions returning a modified copy of the input list.
 
  -- Function: -keep (fn list)
      Return a new list of the non-nil results of applying FN to the
diff --git a/dash.texi b/dash.texi
index 7c7c516..a0b9bbf 100644
--- a/dash.texi
+++ b/dash.texi
@@ -777,7 +777,7 @@ See also: @code{-select-columns} (@pxref{-select-columns}), 
@code{-select-by-ind
 @section List to list
 
 
-Bag of various functions which modify input list.
+Functions returning a modified copy of the input list.
 
 
 @anchor{-keep}
diff --git a/dev/examples.el b/dev/examples.el
index a192a63..d19164a 100644
--- a/dev/examples.el
+++ b/dev/examples.el
@@ -208,7 +208,7 @@ new list."
     (-select-column 1 '((1 2 3) (a b c) (:a :b :c))) => '(2 b :b)))
 
 (def-example-group "List to list"
-  "Bag of various functions which modify input list."
+  "Functions returning a modified copy of the input list."
 
   (defexamples -keep
     (-keep 'cdr '((1 2 3) (4 5) (6))) => '((2 3) (5))

Reply via email to