From cd26142b4783674fadff5d13465af777daadf448 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Fri, 31 May 2024 11:20:57 +0200 Subject: [PATCH] Fix code indentation --- src/main.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.lisp b/src/main.lisp index 31d4e65..76ce536 100644 --- a/src/main.lisp +++ b/src/main.lisp @@ -99,7 +99,8 @@ (define-easy-handler (survey :uri #'survey-uri) () (let* ((id (subseq (hunchentoot:request-uri*) (length "/survey/"))) - (survey (assoc (parse-integer id) (load-response (make-surveys-db-path))))) + (survey (assoc (parse-integer id) + (load-response (make-surveys-db-path))))) (ml-survey/pages:survey survey))) (define-easy-handler (new-survey :uri "/new-survey") nil