Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lua/wikis/commons/Widget/ReferenceTag.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ local Component = Lua.import('Module:Widget/Component')
local Renderer = Lua.import('Module:Widget/Renderer')

--[[
Widget component that is roughly equivalent to <ref> tags in MediaWiki.
Widget component that is roughly equivalent to `<ref>` tags in MediaWiki.

For example, the following Lua code snippet:

Expand Down Expand Up @@ -40,7 +40,7 @@ local function ReferenceTag(props, context)
'ref',
--[[
Because Frame:extensionTag expects string argument for content, we cannot directly
pass children in its raw form. Thus, we manually call Renderer.render here instead
pass children in their raw form. Thus, we manually call Renderer.render here instead
of letting it be called after processing the parent component.
]]
Renderer.render(props.children, context),
Expand Down
Loading