diff options
author | Lynn C. Rees <lcrees@gmail.com> | 2017-11-15 09:34:48 -0700 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-11-15 17:34:48 +0100 |
commit | 0ab373115c75e75618d3e8935445cee3e0298b60 (patch) | |
tree | cb2de6d3c431a0c1a2c23d00681985d6b3f6173a /lib/core | |
parent | 7f4248dc0c785f75a74d955467195ef968ea7a4a (diff) | |
download | Nim-0ab373115c75e75618d3e8935445cee3e0298b60.tar.gz |
Trim remaining expr/stmt from stdlib (#6742)
Diffstat (limited to 'lib/core')
-rw-r--r-- | lib/core/macros.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/macros.nim b/lib/core/macros.nim index fc5b5bfb7..5d0cb0c0d 100644 --- a/lib/core/macros.nim +++ b/lib/core/macros.nim @@ -400,7 +400,7 @@ proc quote*(bl: typed, op = "``"): NimNode {.magic: "QuoteAst", noSideEffect.} ## ## .. code-block:: nim ## - ## macro check(ex: expr): stmt = + ## macro check(ex: untyped): typed = ## # this is a simplified version of the check macro from the ## # unittest module. ## |