diff options
Diffstat (limited to '')
-rwxr-xr-x | manual/2html | 2 |
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, |