summary refs log tree commit diff stats
path: root/tests/misc/tstrdesc.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/misc/tstrdesc.nim')
-rw-r--r--tests/misc/tstrdesc.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/misc/tstrdesc.nim b/tests/misc/tstrdesc.nim
index d23160315..1479fcda8 100644
--- a/tests/misc/tstrdesc.nim
+++ b/tests/misc/tstrdesc.nim
@@ -1,12 +1,12 @@
 var
-  x: array [0..2, int]
+  x: array[0..2, int]
 
 x = [0, 1, 2]
 
 type
   TStringDesc {.final.} = object
     len, space: int # len and space without counting the terminating zero
-    data: array [0..0, char] # for the '\0' character
+    data: array[0..0, char] # for the '\0' character
 
 var
   emptyString {.exportc: "emptyString".}: TStringDesc