From 2eefbeccbfa14a7f2006a00ba54a4fc8210324d6 Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Sat, 20 Dec 2014 14:57:20 +0200 Subject: [PATCH] Don't use an inline comment on a line of its own --- dash.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dash.el b/dash.el index fd2b779..d0fc30c 100644 --- a/dash.el +++ b/dash.el @@ -901,8 +901,8 @@ of cons cells. Otherwise, return the groupings as a list of lists. " (setq lists (mapcar 'cdr lists))) (setq results (nreverse results)) (if (= (length lists) 2) - ; to support backward compatability, return - ; a cons cell if two lists were provided + ;; to support backward compatability, return + ;; a cons cell if two lists were provided (--map (cons (car it) (cadr it)) results) results)))