Skip to content

Commit 37e4700

Browse files
committed
0.0.6: fix bug in help
1 parent 91f243e commit 37e4700

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

datamuse.nim

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ macro makeMuse(kind: QueryKind; name: string): untyped =
158158

159159
result = newStmtList()
160160
# create the help table
161-
result.add newConstStmt(helpIdent, help)
161+
result.add newConstStmt(helpIdent, newCall(ident"toTable", help))
162162
# generate the proc node
163163
result.add newProc(name, params, body)
164164
echo result.repr

datamuse.nimble

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "0.0.5"
1+
version = "0.0.6"
22
author = "disruptek"
33
description = "generate random names"
44
license = "MIT"

0 commit comments

Comments
 (0)