summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/core/macros.nim1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/core/macros.nim b/lib/core/macros.nim
index d9e89e7f1..5d852cdb1 100644
--- a/lib/core/macros.nim
+++ b/lib/core/macros.nim
@@ -720,6 +720,7 @@ proc ident*(name: string): NimNode {.compileTime,inline.} = newIdentNode(name)
   ## Create a new ident node from a string
 
 iterator items*(n: NimNode): NimNode {.inline.} =
+  ## Iterates over the children of the NimNode ``n``.
   for i in 0 ..< n.len:
     yield n[i]