Kaydet (Commit) 23442584 authored tarafından Mark Dickinson's avatar Mark Dickinson

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

üst 7c038b47
...@@ -622,7 +622,7 @@ m_log2(double x) ...@@ -622,7 +622,7 @@ m_log2(double x)
} }
else { else {
errno = EDOM; 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