diff options
author | Araq <rumpf_a@web.de> | 2011-11-12 01:02:06 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-11-12 01:02:06 +0100 |
commit | 8fc15ca0d5b46f1ecd3bd46f201f4ede3225be30 (patch) | |
tree | e2a09e7fdd7997dea504dd2a3ffa3dde2cdc3aa0 /compiler | |
parent | 2bd14f4ba8863f08eadc99e6664935ab1e3fec20 (diff) | |
download | Nim-8fc15ca0d5b46f1ecd3bd46f201f4ede3225be30.tar.gz |
added another test case
Diffstat (limited to 'compiler')
-rwxr-xr-x | compiler/docgen.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/docgen.nim b/compiler/docgen.nim index c05c35b90..411f93115 100755 --- a/compiler/docgen.nim +++ b/compiler/docgen.nim @@ -435,7 +435,7 @@ proc renderRstToRst(d: PDoc, n: PRstNode): PRope = result = ropef("$n$1$3$n$1$2$n$1$3", [ind, result, toRope(repeatChar(L, lvlToChar[n.level]))]) of rnTransition: - result = ropef("$n$n$1$2$n$n", [ind, toRope(repeatChar(78 - d.indent, '-'))]) + result = ropef("$n$n$1$2$n$n", [ind, toRope(repeatChar(78-d.indent, '-'))]) of rnParagraph: result = renderRstSons(d, n) result = ropef("$n$n$1$2", [ind, result]) |