summary refs log tree commit diff stats
path: root/tests/macros
diff options
context:
space:
mode:
Diffstat (limited to 'tests/macros')
-rw-r--r--tests/macros/tdebugstmt.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/macros/tdebugstmt.nim b/tests/macros/tdebugstmt.nim
index 740ae7b05..69e610075 100644
--- a/tests/macros/tdebugstmt.nim
+++ b/tests/macros/tdebugstmt.nim
@@ -21,7 +21,7 @@ macro debug(n: varargs[untyped]): untyped =
     add(result, newCall("writeLine", newIdentNode("stdout"), n[i]))
 
 var
-  a: array [0..10, int]
+  a: array[0..10, int]
   x = "some string"
 a[0] = 42
 a[1] = 45
92' href='#n92'>92 93 94 95 96 97 98 99 100