summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2018-09-25 00:10:12 +0200
committerAraq <rumpf_a@web.de>2018-09-25 00:10:21 +0200
commit8029a649ba2cd394cad1749c017d5758cdcdbd4c (patch)
tree3fa48d4eebd75af41549dd3d7d97ea0dac41b243 /lib
parent5a3ed8f2baacd4a48aa909dcd6d35f60b16171c6 (diff)
downloadNim-8029a649ba2cd394cad1749c017d5758cdcdbd4c.tar.gz
math.nim: document what to use instead of 'fmod'
Diffstat (limited to 'lib')
-rw-r--r--lib/pure/math.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/math.nim b/lib/pure/math.nim
index bc804eb86..909aa11b7 100644
--- a/lib/pure/math.nim
+++ b/lib/pure/math.nim
@@ -383,8 +383,8 @@ when not defined(JS): # C
       ## .. code-block:: nim
       ##  echo trunc(PI) # 3.0
 
-  proc fmod*(x, y: float32): float32 {.deprecated, importc: "fmodf", header: "<math.h>".}
-  proc fmod*(x, y: float64): float64 {.deprecated, importc: "fmod", header: "<math.h>".}
+  proc fmod*(x, y: float32): float32 {.deprecated: "use mod instead", importc: "fmodf", header: "<math.h>".}
+  proc fmod*(x, y: float64): float64 {.deprecated: "use mod instead", importc: "fmod", header: "<math.h>".}
     ## Computes the remainder of `x` divided by `y`
     ##
     ## .. code-block:: nim