branch: externals/dash
commit 47e11aed6103fb31798deb3c4c188e0e0a2942cc
Author: Fredrik Bergroth <[email protected]>
Commit: Fredrik Bergroth <[email protected]>
Update docs
Binding behaves like -let* rather than -let.
---
README.md | 6 +++---
dash.el | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md
index 555da08..b3635d4 100644
--- a/README.md
+++ b/README.md
@@ -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`](#-let-varlist-rest-body).
+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
@@ -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`](#-let-varlist-rest-body).
+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
@@ -2256,7 +2256,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.
+ - [Fredrik Bergroth](https://github.com/fbergroth) made the `-if-let` family
use `-let` destructuring and improved script for generating documentation.
Thanks!
diff --git a/dash.el b/dash.el
index d701512..74dbcab 100644
--- a/dash.el
+++ b/dash.el
@@ -1496,7 +1496,7 @@ See `-let' for the description of destructuring
mechanism."
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*'."
(declare (debug ((&rest (sexp form)) form body))
(indent 2))
(->> vars-vals
@@ -1528,7 +1528,7 @@ otherwise do ELSE."
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*'."
(declare (debug ((&rest (sexp form)) body))
(indent 1))
`(-if-let* ,vars-vals (progn ,@body)))