Fix incorrect documentation for the Py_IS_FINITE(X) macro.
diff --git a/Include/pyport.h b/Include/pyport.h
index 15e2260..fe79f6d 100644
--- a/Include/pyport.h
+++ b/Include/pyport.h
@@ -295,9 +295,9 @@
 #define Py_IS_INFINITY(X) ((X) && (X)*0.5 == (X))
 #endif
 
-/* Py_IS_INFINITY(X)
- * Return 1 if float or double arg is an infinity, else 0.
- * Some architectures (Windows) have intrinsics for this, so a special
+/* Py_IS_FINITE(X)
+ * Return 1 if float or double arg is neither infinite nor NAN, else 0.
+ * Some compilers (e.g. VisualStudio) have intrisics for this, so a special
  * macro for this particular test is useful
  */
 #ifndef Py_IS_FINITE