diff options
-rw-r--r-- | lib/pure/sugar.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/sugar.nim b/lib/pure/sugar.nim index dbc60b8a9..d2bdb0fdc 100644 --- a/lib/pure/sugar.nim +++ b/lib/pure/sugar.nim @@ -150,7 +150,7 @@ macro `->`*(p, b: untyped): untyped = result = createProcType(p, b) -macro dump*(x: typed): untyped = +macro dump*(x: untyped): untyped = ## Dumps the content of an expression, useful for debugging. ## It accepts any expression and prints a textual representation ## of the tree representing the expression - as it would appear in |