From e221d0dae567554933a706b0257626c71f3fcc4f Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Thu, 1 Aug 2024 20:54:52 +0200 Subject: [PATCH] Fix docstring --- src/breadcrumb.lisp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/breadcrumb.lisp b/src/breadcrumb.lisp index 69f3361..61aa5c4 100644 --- a/src/breadcrumb.lisp +++ b/src/breadcrumb.lisp @@ -7,13 +7,13 @@ (defmacro with-breadcrumb (&rest items) "Creates a Bootstrap breadcrumb navigation. -ITEMS: A list of (label . url) pairs. The last item is automatically set as active. +ITEMS: A list of \"label\" \"url\" pairs. The last item is automatically set as active. Example usage: (with-breadcrumb - (\"Home\" . \"/\") - (\"Library\" . \"/library\") - (\"Data\" . nil))" + \"Home\" \"/\" + \"Library\" \"/library\" + \"Data\" nil)" `(spinneret:with-html (:nav :class "container" :aria-label "breadcrumb"