summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2017-10-28 12:10:22 +0200
committerAndreas Rumpf <rumpf_a@web.de>2017-10-28 12:10:22 +0200
commitdcfc2b0e5f94a3a6daf1e30dc337470702c662eb (patch)
treed6991f0ed7a0c2c3642641560e33f31f8bab8ea4 /lib
parent788cf426123e00a7879dbd9fc765cefb08bd3ddc (diff)
downloadNim-dcfc2b0e5f94a3a6daf1e30dc337470702c662eb.tar.gz
sysstr: code formatting
Diffstat (limited to 'lib')
-rw-r--r--lib/system/sysstr.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/system/sysstr.nim b/lib/system/sysstr.nim
index 50a8e6baa..5db16b233 100644
--- a/lib/system/sysstr.nim
+++ b/lib/system/sysstr.nim
@@ -363,9 +363,9 @@ proc c_strtod(buf: cstring, endptr: ptr cstring): float64 {.
 
 const
   IdentChars = {'a'..'z', 'A'..'Z', '0'..'9', '_'}
-  powtens =   [ 1e0,   1e1,  1e2,  1e3,  1e4,  1e5,  1e6,  1e7,  1e8,  1e9,
-                1e10, 1e11, 1e12, 1e13, 1e14, 1e15, 1e16, 1e17, 1e18, 1e19,
-                1e20, 1e21, 1e22]
+  powtens =  [1e0, 1e1, 1e2, 1e3, 1e4, 1e5, 1e6, 1e7, 1e8, 1e9,
+              1e10, 1e11, 1e12, 1e13, 1e14, 1e15, 1e16, 1e17, 1e18, 1e19,
+              1e20, 1e21, 1e22]
 
 proc nimParseBiggestFloat(s: string, number: var BiggestFloat,
                           start = 0): int {.compilerProc.} =