From 5f2f8f3b11afc423046b0fb99e77aac016122852 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Sat, 22 Jul 2023 21:28:20 +0200 Subject: [PATCH] Update docstring --- src/component/accordion.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/component/accordion.lisp b/src/component/accordion.lisp index 4c97e71..69e64f4 100644 --- a/src/component/accordion.lisp +++ b/src/component/accordion.lisp @@ -33,11 +33,11 @@ (defmacro header (target name show) "This macro generates a Bootstrap header for an accordion item. - TARGET: (optional) The id of the collapse this header controls. Defaults to 'collapseOne'. + TARGET: The id of the collapse this header controls. Defaults to 'collapseOne'. - NAME: (optional) The text that will be displayed on this header. Defaults to 'Heading'. + NAME: The text that will be displayed on this header. Defaults to 'Heading'. - SHOW: (optional) A boolean indicating whether the collapse controlled by this header should be shown when + SHOW: A boolean indicating whether the collapse controlled by this header should be shown when the accordion first loads. If true, the 'aria-expanded' attribute will be 'true'. Defaults to NIL. Example: