summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorArne Döring <arne.doering@gmx.net>2018-10-18 16:07:15 +0200
committerArne Döring <arne.doering@gmx.net>2018-10-18 16:07:15 +0200
commitf9bc4d014a84ae0aad7b174e6987451e6204caa7 (patch)
tree87e108419e2bf57d757b1b0081ac91114da4d988 /lib
parent016e0b1aac1a2287afc2dbd61920cd826ef18f74 (diff)
downloadNim-f9bc4d014a84ae0aad7b174e6987451e6204caa7.tar.gz
changelog entry
Diffstat (limited to 'lib')
-rw-r--r--lib/core/macros.nim3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/core/macros.nim b/lib/core/macros.nim
index 0ae3a811f..79195966e 100644
--- a/lib/core/macros.nim
+++ b/lib/core/macros.nim
@@ -179,8 +179,7 @@ proc `[]=`*(n: NimNode, i: BackwardsIndex, child: NimNode) =
 template `or`*(x, y: NimNode): NimNode =
   ## Evaluate ``x`` and when it is not an empty node, return
   ## it. Otherwise evaluate to ``y``. Can be used to chain several
-  ## expressions that evaluates to the first expression that is not
-  ## empty.
+  ## expressions to get the first expression that is not empty.
   ##
   ## .. code-block:: nim
   ##