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

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

[elpa] externals/dash dbcb3ef 231/439: Update README


From: Phillip Lord
Subject: [elpa] externals/dash dbcb3ef 231/439: Update README
Date: Tue, 04 Aug 2015 20:28:20 +0000

branch: externals/dash
commit dbcb3ef2e78a5c826ae9a8548b93638adcd52175
Author: Magnar Sveen <address@hidden>
Commit: Magnar Sveen <address@hidden>

    Update README
---
 README.md |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index dd948af..7dcb490 100644
--- a/README.md
+++ b/README.md
@@ -120,7 +120,7 @@ To get function combinators:
 * [-last](#-last-pred-list) `(pred list)`
 * [-first-item](#-first-item-list) `(list)`
 * [-last-item](#-last-item-list) `(list)`
-* [-sort](#-sort-predicate-list) `(predicate list)`
+* [-sort](#-sort-comparator-list) `(comparator list)`
 
 ### Threading macros
 
@@ -846,11 +846,11 @@ Returns the first item of `list`, or nil on an empty list.
 (-last-item nil) ;; => nil
 ```
 
-#### -sort `(predicate list)`
+#### -sort `(comparator list)`
 
-Sort `list`, stably, comparing elements using `predicate`.
+Sort `list`, stably, comparing elements using `comparator`.
 Returns the sorted list.  `list` is `not` modified by side effects.
-`predicate` is called with two elements of `list`, and should return non-nil
+`comparator` is called with two elements of `list`, and should return non-nil
 if the first element should sort before the second.
 
 ```cl



reply via email to

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