summary refs log tree commit diff stats
path: root/compiler/docgen.nim
diff options
context:
space:
mode:
authorJacek Sieka <arnetheduck@gmail.com>2015-03-29 13:00:41 +0800
committerJacek Sieka <arnetheduck@gmail.com>2015-04-01 22:32:15 +0800
commitc40249cd43972079d92b513c8d1f0eb24220da6d (patch)
tree9f23f8b72f2bd580cfaec450310ca3e1eff61d4f /compiler/docgen.nim
parentb4e4ea8d1bcfbccae5a8aa20d8c7e61c09b6f463 (diff)
downloadNim-c40249cd43972079d92b513c8d1f0eb24220da6d.tar.gz
compiler_ropes: ropeToStr -> $
Diffstat (limited to 'compiler/docgen.nim')
-rw-r--r--compiler/docgen.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/docgen.nim b/compiler/docgen.nim
index 8f9ef4763..940521d48 100644
--- a/compiler/docgen.nim
+++ b/compiler/docgen.nim
@@ -436,7 +436,7 @@ proc genJSONItem(d: PDoc, n, nameNode: PNode, k: TSymKind): JsonNode =
   if not isVisible(nameNode): return
   var
     name = getName(d, nameNode)
-    comm = genRecComment(d, n).ropeToStr()
+    comm = $genRecComment(d, n)
     r: TSrcGen
 
   initTokRender(r, n, {renderNoBody, renderNoComments, renderDocComments})