diff options
author | flywind <43030857+xflywind@users.noreply.github.com> | 2021-01-16 00:19:17 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-15 22:19:17 -0800 |
commit | 5ed6a94d8f1c13abb1681f5425a59d2bac827242 (patch) | |
tree | 2b687f092afa24fd30d627bf47feab94d89251a3 /lib | |
parent | 78a99587a4ad8ad17a179a7992fcda8a6e10f25a (diff) | |
download | Nim-5ed6a94d8f1c13abb1681f5425a59d2bac827242.tar.gz |
promote math.isNaN (#16734)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/system.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim index 2a5f13b73..869bdc9b4 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -1499,7 +1499,7 @@ const ## Contains an IEEE floating point value of *Not A Number*. ## ## Note that you cannot compare a floating point value to this value - ## and expect a reasonable result - use the `classify` procedure + ## and expect a reasonable result - use the `isNaN` or `classify` procedure ## in the `math module <math.html>`_ for checking for NaN. |