From 3f2d47faff31e17fce8af92921e3718e2d06d93e Mon Sep 17 00:00:00 2001 From: Albert Krewinkel Date: Fri, 20 Dec 2024 11:20:01 +0100 Subject: [PATCH] Fix docs of `Cite` constructor function --- src/Text/Pandoc/Lua/Marshal/Inline.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Text/Pandoc/Lua/Marshal/Inline.hs b/src/Text/Pandoc/Lua/Marshal/Inline.hs index 6c406b1..0b792f9 100644 --- a/src/Text/Pandoc/Lua/Marshal/Inline.hs +++ b/src/Text/Pandoc/Lua/Marshal/Inline.hs @@ -337,7 +337,7 @@ inlineConstructors :: LuaError e => [DocumentedFunction e] inlineConstructors = [ defun "Cite" ### liftPure2 (flip Cite) - <#> parameter peekInlinesFuzzy "content" "Inlines" "placeholder content" + <#> parameter peekInlinesFuzzy "Inlines" "content" "placeholder content" <#> parameter (peekList peekCitation) "{Citation,...}" "citations" "List of Citations" =#> functionResult pushInline "Inline" "cite element"