Fix naming of local var
This commit is contained in:
parent
43ce50933f
commit
31010491e2
1 changed files with 2 additions and 2 deletions
|
@ -167,9 +167,9 @@ Example:
|
||||||
`(spinneret:with-html
|
`(spinneret:with-html
|
||||||
(:li (combo () ,@values)))
|
(:li (combo () ,@values)))
|
||||||
`(spinneret:with-html
|
`(spinneret:with-html
|
||||||
,@(loop for input in values
|
,@(loop for value in values
|
||||||
collect
|
collect
|
||||||
`(:li (apply-input-form ,type ,group ,input)))))))
|
`(:li (apply-input-form ,type ,group ,value)))))))
|
||||||
|
|
||||||
(defmacro question (ask group &body body)
|
(defmacro question (ask group &body body)
|
||||||
"This macro generates a fieldset for a question with multiple answers.
|
"This macro generates a fieldset for a question with multiple answers.
|
||||||
|
|
Loading…
Add table
Reference in a new issue