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

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

[elpa] externals/dash 79e3b92 172/439: Fix -when-let and -if-let docstri


From: Phillip Lord
Subject: [elpa] externals/dash 79e3b92 172/439: Fix -when-let and -if-let docstrings
Date: Tue, 04 Aug 2015 20:27:36 +0000

branch: externals/dash
commit 79e3b92c1db82dcb411b730aaebced61ddc17df3
Author: Emanuel Evans <address@hidden>
Commit: Emanuel Evans <address@hidden>

    Fix -when-let and -if-let docstrings
---
 dash.el |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dash.el b/dash.el
index 58fba98..2c3c120 100644
--- a/dash.el
+++ b/dash.el
@@ -689,7 +689,7 @@ in in second form, etc."
 
 (defmacro -when-let (var-val &rest body)
   "If VAL evaluates to non-nil, bind it to VAR and execute body.
-VAR-VAL should be a (var val) pair."
+VAR-VAL should be a (VAR VAL) pair."
   (let ((var (car var-val))
         (val (cadr var-val)))
     `(let ((,var ,val))
@@ -705,7 +705,7 @@ body."
 
 (defmacro -if-let (var-val then &optional else)
   "If VAL evaluates to non-nil, bind it to VAR and do THEN,
-otherwise do ELSE.  VAR-VAL should be a (VAR VAL) pair."
+otherwise do ELSE. VAR-VAL should be a (VAR VAL) pair."
   (let ((var (car var-val))
         (val (cadr var-val)))
     `(let ((,var ,val))



reply via email to

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