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

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

[elpa] externals/dash 9b0166a 224/426: Fix terminology


From: Phillip Lord
Subject: [elpa] externals/dash 9b0166a 224/426: Fix terminology
Date: Tue, 04 Aug 2015 19:37:54 +0000

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

    Fix terminology
---
 README.md       |    2 +-
 dev/examples.el |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index c54211d..1b594ad 100644
--- a/README.md
+++ b/README.md
@@ -127,7 +127,7 @@ Or you can just dump `dash.el` in your load path somewhere.
 * [!cons](#-cons-car-cdr) `(car cdr)`
 * [!cdr](#-cdr-list) `(list)`
 
-### Function composition
+### Function combinators
 
 
 These combinators require Emacs 24 for its lexical scope. So you'll have to 
include them with `(require 'dash-functional)`.
diff --git a/dev/examples.el b/dev/examples.el
index d7ac41f..f14cff8 100644
--- a/dev/examples.el
+++ b/dev/examples.el
@@ -382,7 +382,7 @@
     (let ((l '(3))) (!cdr l) l) => '()
     (let ((l '(3 5))) (!cdr l) l) => '(5)))
 
-(def-example-group "Function composition" "These combinators require Emacs 24 
for its lexical scope. So you'll have to include them with `(require 
'dash-functional)`."
+(def-example-group "Function combinators" "These combinators require Emacs 24 
for its lexical scope. So you'll have to include them with `(require 
'dash-functional)`."
   (defexamples -partial
     (funcall (-partial '- 5) 3) => 2
     (funcall (-partial '+ 5 2) 3) => 10)



reply via email to

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