fixes a typo

This commit is contained in:
Andreas Rumpf
2017-07-09 01:01:37 +02:00
parent b6307dded3
commit f5e4f8c324

View File

@@ -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) {.