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

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

[elpa] externals/dash 5e9c1a9 373/439: Add Fredrik Bergroth to the list


From: Phillip Lord
Subject: [elpa] externals/dash 5e9c1a9 373/439: Add Fredrik Bergroth to the list of contributors
Date: Tue, 04 Aug 2015 20:30:44 +0000

branch: externals/dash
commit 5e9c1a9ce341daa4f69ee39654f476be79675844
Author: Matus Goljer <address@hidden>
Commit: Matus Goljer <address@hidden>

    Add Fredrik Bergroth to the list of contributors
---
 README.md          |   15 ++++++++-------
 readme-template.md |    1 +
 2 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/README.md b/README.md
index ad8dbd5..04b7db2 100644
--- a/README.md
+++ b/README.md
@@ -1312,7 +1312,7 @@ second elements of each list, and so on. The lengths of 
the returned
 groupings are equal to the length of the shortest input list.
 
 If two lists are provided as arguments, return the groupings as a list
-of cons cells. Otherwise, return the groupings as a list of lists.
+of cons cells. Otherwise, return the groupings as a list of lists. 
 
 ```el
 (-zip '(1 2 3) '(4 5 6)) ;; => '((1 . 4) (2 . 5) (3 . 6))
@@ -1663,9 +1663,9 @@ Convenient versions of `let` and `let*` constructs 
combined with flow control.
 If `val` evaluates to non-nil, bind it to `var` and execute body.
 `var-val` should be a (`var` `val`) pair.
 
-Note: binding is done according to `-let`.
+Note: binding is done according to [`-let`](#-let-varlist-rest-body).
 
-```cl
+```el
 (-when-let (match-index (string-match "d" "abcd")) (+ match-index 2)) ;; => 5
 (-when-let ((&plist :foo foo) (list :foo "foo")) foo) ;; => "foo"
 (-when-let ((&plist :foo foo) (list :bar "bar")) foo) ;; => nil
@@ -1677,7 +1677,7 @@ If all `vals` evaluate to true, bind them to their 
corresponding
 `vars` and execute body. `vars-vals` should be a list of (`var` `val`)
 pairs.
 
-Note: binding is done according to `-let`.
+Note: binding is done according to [`-let`](#-let-varlist-rest-body).
 
 ```el
 (-when-let* ((x 5) (y 3) (z (+ y 4))) (+ x y z)) ;; => 15
@@ -1689,9 +1689,9 @@ Note: binding is done according to `-let`.
 If `val` evaluates to non-nil, bind it to `var` and do `then`,
 otherwise do `else`. `var-val` should be a (`var` `val`) pair.
 
-Note: binding is done according to `-let`.
+Note: binding is done according to [`-let`](#-let-varlist-rest-body).
 
-```cl
+```el
 (-if-let (match-index (string-match "d" "abc")) (+ match-index 3) 7) ;; => 7
 (--if-let (even? 4) it nil) ;; => t
 ```
@@ -1702,7 +1702,7 @@ If all `vals` evaluate to true, bind them to their 
corresponding
 `vars` and do `then`, otherwise do `else`. `vars-vals` should be a list
 of (`var` `val`) pairs.
 
-Note: binding is done according to `-let`.
+Note: binding is done according to [`-let`](#-let-varlist-rest-body).
 
 ```el
 (-if-let* ((x 5) (y 3) (z 7)) (+ x y z) "foo") ;; => 15
@@ -2252,6 +2252,7 @@ Change `readme-template.md` or `examples-to-docs.el` 
instead.
  - [Johan Andersson](https://github.com/rejeep) contributed `-sum`, `-product` 
and `-same-items?`
  - [Christina Whyte](https://github.com/kurisuwhyte) contributed `-compose`
  - [Steve Lamb](https://github.com/steventlamb) contributed `-cycle`, `-pad`, 
`-annotate`, `-zip-fill` and an n-ary version of `-zip`.
+ - [Fredrik Bergroth](https://github.com/fbergroth) made the `-if-let` family 
use `-let` desctructuring and improved script for generating documentation.
 
 Thanks!
 
diff --git a/readme-template.md b/readme-template.md
index fccdbfb..4ab422b 100644
--- a/readme-template.md
+++ b/readme-template.md
@@ -199,6 +199,7 @@ Change `readme-template.md` or `examples-to-docs.el` 
instead.
  - [Johan Andersson](https://github.com/rejeep) contributed `-sum`, `-product` 
and `-same-items?`
  - [Christina Whyte](https://github.com/kurisuwhyte) contributed `-compose`
  - [Steve Lamb](https://github.com/steventlamb) contributed `-cycle`, `-pad`, 
`-annotate`, `-zip-fill` and an n-ary version of `-zip`.
+ - [Fredrik Bergroth](https://github.com/fbergroth) made the `-if-let` family 
use `-let` desctructuring and improved script for generating documentation.
 
 Thanks!
 



reply via email to

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