# HG changeset patch # User Jaroslav Hajek # Date 1258629832 -3600 # Node ID 55219e65c7cda226c8f3bf05a635c097df778541 # Parent 7c70084b125e1aa34da6b3a8c027c08d3c4295ee fix typo diff --git a/liboctave/lo-specfun.cc b/liboctave/lo-specfun.cc --- a/liboctave/lo-specfun.cc +++ b/liboctave/lo-specfun.cc @@ -3101,7 +3101,7 @@ return x < -1.0f ? FloatComplex (logf (-(1.0f + x)), pi) : FloatComplex (log1pf (x)); } -// This algorithm is due to P. Jacklam. +// This algorithm is due to P. J. Acklam. // See http://home.online.no/~pjacklam/notes/invnorm/ // The rational approximation has relative accuracy 1.15e-9 in the whole region. // For doubles, it is refined by a single step of Higham's 3rd order method.