diff options
author | Araq <rumpf_a@web.de> | 2019-01-11 18:36:20 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-01-11 22:17:43 +0100 |
commit | 647066e378bdbc85646dd88ea90eb15eddbbbc50 (patch) | |
tree | 9516520eda2735b218a0a93f3d48c6857c363a0e /lib/core/macros.nim | |
parent | 56b804a283a69baa4887eaf300c353a5748f86a4 (diff) | |
download | Nim-647066e378bdbc85646dd88ea90eb15eddbbbc50.tar.gz |
make the stdlib work with the changed docgen
Diffstat (limited to 'lib/core/macros.nim')
-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 64334161e..92a35193f 100644 --- a/lib/core/macros.nim +++ b/lib/core/macros.nim @@ -151,7 +151,7 @@ proc `==`*(a, b: NimNode): bool {.magic: "EqNimrodNode", noSideEffect.} proc `==`*(a, b: NimSym): bool {.magic: "EqNimrodNode", noSideEffect, deprecated.} ## compares two Nim symbols - ## **Deprecated since version 0.18.1**; Use ```==`(NimNode,NimNode)`` instead. + ## **Deprecated since version 0.18.1**; Use ``==(NimNode, NimNode)`` instead. proc sameType*(a, b: NimNode): bool {.magic: "SameNodeType", noSideEffect.} = |