summary refs log tree commit diff stats
path: root/lib/system.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2016-07-15 12:56:03 +0200
committerAndreas Rumpf <rumpf_a@web.de>2016-07-15 12:56:03 +0200
commit0834cd63d99a8a63682a033bd6222dc6cee4b3a9 (patch)
treeb155afdfd863273b066f595da2de0bfd5dbb46aa /lib/system.nim
parent3e72c98d49ff6c9c07251e2497c5b245770bec5e (diff)
downloadNim-0834cd63d99a8a63682a033bd6222dc6cee4b3a9.tar.gz
prepare Nim codebase for upcoming parser changes
Diffstat (limited to 'lib/system.nim')
-rw-r--r--lib/system.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim
index 6a4265e5a..40607bdb3 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -1523,7 +1523,7 @@ type # these work for most platforms:
     ## This is the same as the type ``unsigned long long`` in *C*.
 
   cstringArray* {.importc: "char**", nodecl.} = ptr
-    array [0..ArrayDummySize, cstring]
+    array[0..ArrayDummySize, cstring]
     ## This is binary compatible to the type ``char**`` in *C*. The array's
     ## high value is large enough to disable bounds checking in practice.
     ## Use `cstringArrayToSeq` to convert it into a ``seq[string]``.