summary refs log tree commit diff stats
path: root/tests/stdlib/tstrset.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/stdlib/tstrset.nim')
-rw-r--r--tests/stdlib/tstrset.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/stdlib/tstrset.nim b/tests/stdlib/tstrset.nim
index 15024c3f1..1b253f862 100644
--- a/tests/stdlib/tstrset.nim
+++ b/tests/stdlib/tstrset.nim
@@ -7,10 +7,10 @@ type
     kind: TRadixNodeKind
   TRadixNodeLinear = object of TRadixNode
     len: int8
-    keys: array [0..31, char]
-    vals: array [0..31, PRadixNode]
+    keys: array[0..31, char]
+    vals: array[0..31, PRadixNode]
   TRadixNodeFull = object of TRadixNode
-    b: array [char, PRadixNode]
+    b: array[char, PRadixNode]
   TRadixNodeLeaf = object of TRadixNode
     s: string
   PRadixNodeLinear = ref TRadixNodeLinear