From 822b5381077f66400f2481b40b7e036158eede9b Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Sat, 26 Aug 2023 09:12:26 +0200 Subject: [PATCH] Fix readability of code example in docstring --- src/component/form.lisp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/component/form.lisp b/src/component/form.lisp index 58291e8..fc801e4 100644 --- a/src/component/form.lisp +++ b/src/component/form.lisp @@ -32,7 +32,12 @@ details. DESCRIBEBY: Refers to the id of the element that describes the input field. Example: - (ctrl (:id \"inputID\" :label \"Label\" :type \"text\" :placeholder \"Placeholder\" :describeby \"hintID\" :text \"Hint text\"))" + (ctrl (:id \"inputID\" + :label \"Label\" + :type \"text\" + :placeholder \"Placeholder\" + :describeby \"hintID\" + :text \"Hint text\"))" `(spinneret:with-html ,@(loop for item in rest collect (destructuring-bind (&key id label type placeholder text describeby) item