mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
Fix a quirk for type render in the default format.
This commit is contained in:
parent
05e92672d6
commit
3a99b91334
1 changed files with 2 additions and 2 deletions
|
@ -168,9 +168,9 @@ local function default_format_callback(self, params, _, md)
|
|||
end
|
||||
|
||||
if params.type then
|
||||
ret = ret .. '<span class="parameter">('..
|
||||
ret = ret .. '<span class="types">'..
|
||||
md("`"..params.type.value.."`")..
|
||||
")</span>"
|
||||
"</span>"
|
||||
end
|
||||
|
||||
return ret.." "..md(params.description)
|
||||
|
|
Loading…
Reference in a new issue