summary refs log tree commit diff stats
path: root/lib/pure
diff options
context:
space:
mode:
authorA. S. Budden <abudden@gmail.com>2016-05-31 15:16:50 +0100
committerA. S. Budden <abudden@gmail.com>2016-05-31 15:16:50 +0100
commit1b9c66d7205ec9cf06e5dd282c4a28ff34b2b139 (patch)
treeceadd480d8ad27374113d9f39aaf95088be640ac /lib/pure
parent46a2993917edd73fe55623a06999f4811067a754 (diff)
downloadNim-1b9c66d7205ec9cf06e5dd282c4a28ff34b2b139.tar.gz
Correction to round0 following review.
Diffstat (limited to 'lib/pure')
-rw-r--r--lib/pure/math.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/math.nim b/lib/pure/math.nim
index 1edbfcab6..8a1c802be 100644
--- a/lib/pure/math.nim
+++ b/lib/pure/math.nim
@@ -247,7 +247,7 @@ else:
 
   proc exp*(x: float32): float32 {.importc: "Math.exp", nodecl.}
   proc exp*(x: float64): float64 {.importc: "Math.exp", nodecl.}
-  proc round0*(x: float): float {.importc: "Math.round", nodecl.}
+  proc round0(x: float): float {.importc: "Math.round", nodecl.}
 
   proc pow*(x, y: float32): float32 {.importC: "Math.pow", nodecl.}
   proc pow*(x, y: float64): float64 {.importc: "Math.pow", nodecl.}