Commit 0db66ea7 authored by Mark Dickinson's avatar Mark Dickinson

Fix cut-and-paste typo in comment: log10 -> log2.

parent 529c9d39
......@@ -622,7 +622,7 @@ m_log2(double x)
}
else {
errno = EDOM;
return Py_NAN; /* log10(-inf) = nan, invalid-operation */
return Py_NAN; /* log2(-inf) = nan, invalid-operation */
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment