summary refs log tree commit diff stats
path: root/lib/system.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2017-07-09 01:01:37 +0200
committerAndreas Rumpf <rumpf_a@web.de>2017-07-09 01:01:37 +0200
commitf5e4f8c324679768901667b49cec0c326956977b (patch)
tree8d2c4e204e3b4844000b8a676c20d4f363a995bc /lib/system.nim
parentb6307dded34be6c6cd7e7c1d51ca204002c62883 (diff)
downloadNim-f5e4f8c324679768901667b49cec0c326956977b.tar.gz
fixes a typo
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 df0703ec8..424d9694d 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -3511,7 +3511,7 @@ proc `*=`*[T: SomeOrdinal|uint|uint64](x: var T, y: T) {.
 
 proc `+=`*[T: float|float32|float64] (x: var T, y: T) {.
   inline, noSideEffect.} =
-  ## Increments in placee a floating point number
+  ## Increments in place a floating point number
   x = x + y
 
 proc `-=`*[T: float|float32|float64] (x: var T, y: T) {.