emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/dash 4b805e1 041/316: Update README


From: ELPA Syncer
Subject: [elpa] externals/dash 4b805e1 041/316: Update README
Date: Mon, 15 Feb 2021 15:57:21 -0500 (EST)

branch: externals/dash
commit 4b805e13559256679ee03ffa8c933f310d36eb34
Author: Matus Goljer <matus.goljer@gmail.com>
Commit: Matus Goljer <matus.goljer@gmail.com>

    Update README
---
 README.md | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index f0d64a6..860be80 100644
--- a/README.md
+++ b/README.md
@@ -327,7 +327,7 @@ Return a new list consisting of the result of applying `fn` 
to the items in `lis
 
 #### -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.
 
@@ -434,6 +434,8 @@ Thus function `fn` should return a list.
 
 Create a shallow copy of `list`.
 
+(fn `list`)
+
 ```el
 (-copy '(1 2 3)) ;; => '(1 2 3)
 (let ((a '(1 2 3))) (eq a (-copy a))) ;; => nil
@@ -564,6 +566,8 @@ Return the tail of `list` without the first `n` items.
 
 See also: [`-drop-last`](#-drop-last-n-list)
 
+(fn `n` `list`)
+
 ```el
 (-drop 3 '(1 2 3 4 5)) ;; => '(4 5)
 (-drop 17 '(1 2 3 4 5)) ;; => '()
@@ -1660,6 +1664,8 @@ Return the last x in `list` where (`pred` x) is non-nil, 
else nil.
 
 Return the first item of `list`, or nil on an empty list.
 
+(fn `list`)
+
 ```el
 (-first-item '(1 2 3)) ;; => 1
 (-first-item nil) ;; => nil



reply via email to

[Prev in Thread] Current Thread [Next in Thread]