aboutsummaryrefslogtreecommitdiff
path: root/manual/2html
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xmanual/2html2
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/2html b/manual/2html
index 43fd8913..bada6ee0 100755
--- a/manual/2html
+++ b/manual/2html
@@ -358,7 +358,7 @@ item = function (s)
358 local t, p = string.match(s, "^([^\n|]+)|()") 358 local t, p = string.match(s, "^([^\n|]+)|()")
359 if t then 359 if t then
360 s = string.sub(s, p) 360 s = string.sub(s, p)
361 s = Tag.b(t..": ") .. s 361 s = Tag.b(t) ..": " .. s
362 end 362 end
363 return Tag.li(fixpara(s)) 363 return Tag.li(fixpara(s))
364 end, 364 end,