From 43f63e9ae7a6c479258e978fdb585a4fa8c6a5d2 Mon Sep 17 00:00:00 2001 From: Matthew Wampler-Doty Date: Mon, 21 Apr 2014 13:17:40 -0700 Subject: [PATCH] Shortening docstring --- hy/core/macros.hy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hy/core/macros.hy b/hy/core/macros.hy index 29db215..cc9d2b9 100644 --- a/hy/core/macros.hy +++ b/hy/core/macros.hy @@ -128,7 +128,8 @@ (defmacro doto [form &rest expressions] - "Performs a sequence of potentially mutating actions on an initial object, returning the resulting object after the sequence is performed" + "Performs a sequence of potentially mutating actions + on an initial object, returning the resulting object" (setv f (gensym)) (defn build-form [expression] (if (isinstance expression HyExpression)