From aeb0cd4c72ced7aebb0edb5025bbaaecbb684cba Mon Sep 17 00:00:00 2001 From: Guillermo Vaya Date: Mon, 9 Dec 2013 11:49:17 +0100 Subject: [PATCH] Fixed docstring --- hy/contrib/meth.hy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hy/contrib/meth.hy b/hy/contrib/meth.hy index b6301f2..18203ea 100644 --- a/hy/contrib/meth.hy +++ b/hy/contrib/meth.hy @@ -11,7 +11,7 @@ ;; Some macro examples (defmacro route [name path params &rest code] - "Post request" + "Get request" `(route-with-methods ~name ~path ["GET"] ~params ~@code)) (defmacro post-route [name path params &rest code]