summary refs log tree commit diff stats
path: root/tests/concepts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/concepts')
-rw-r--r--tests/concepts/t5642.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/concepts/t5642.nim b/tests/concepts/t5642.nim
index d1e7bd1dd..f08b4629b 100644
--- a/tests/concepts/t5642.nim
+++ b/tests/concepts/t5642.nim
@@ -19,7 +19,7 @@ proc nrow*(dt: DataTable) : Natural =
   return totalLen
 
 let
- stud = Students (id : @[1,2,3], name : @["Vas", "Pas", "NafNaf"], age : @[10,16,32])
+  stud = Students(id : @[1,2,3], name : @["Vas", "Pas", "NafNaf"], age : @[10,16,32])
 
 echo nrow(stud)