summary refs log tree commit diff stats
path: root/lib/system
diff options
context:
space:
mode:
authorIco Doornekamp <ico@pruts.nl>2019-05-10 16:33:43 +0200
committerAndreas Rumpf <rumpf_a@web.de>2019-05-10 16:33:42 +0200
commita170719d1a90aeb08bbf426a44a861d2dd72dcb5 (patch)
treefd9ed068767d63082b75d2536a0735b8c2440a38 /lib/system
parent9aa6aa6514540e055b19da3d4317c4bce8e29a32 (diff)
downloadNim-a170719d1a90aeb08bbf426a44a861d2dd72dcb5.tar.gz
repr on seq now outputs @[...] (#11224)
Diffstat (limited to 'lib/system')
-rw-r--r--lib/system/repr.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/repr.nim b/lib/system/repr.nim
index dc4b6d284..67e625a8e 100644
--- a/lib/system/repr.nim
+++ b/lib/system/repr.nim
@@ -181,7 +181,7 @@ when not defined(useNimRtl):
       add result, "[]"
       return
     result.add(reprPointer(p))
-    result.add '['
+    result.add "@["
     var bs = typ.base.size
     for i in 0..cast[PGenericSeq](p).len-1:
       if i > 0: add result, ", "