From 10789d844f4c2540aeb89d8339df553658b04865 Mon Sep 17 00:00:00 2001
From: Chris Angelico <rosuav@gmail.com>
Date: Fri, 23 May 2014 21:02:43 +1000
Subject: [PATCH] Docs fix for `==() to correct the explanation of float==float
 comparisons

---
 src/operators.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/operators.c b/src/operators.c
index 70dbc6c507..f1c51cbceb 100644
--- a/src/operators.c
+++ b/src/operators.c
@@ -1195,8 +1195,8 @@ PMOD_EXPORT void f_ne(INT32 args)
  *!     @type int
  *!       Successful iff the two integers are numerically equal.
  *!     @type float
- *!       Successful iff the two floats are numerically equal or if
- *!       both are NaN.
+ *!       Successful iff the two floats are numerically equal and
+ *!       not NaN.
  *!     @type string
  *!       Successful iff the two strings are identical, character for
  *!       character. (Since all strings are kept unique, this is
-- 
GitLab