changeset 9838:55219e65c7cd

fix typo
author Jaroslav Hajek <highegg@gmail.com>
date Thu, 19 Nov 2009 12:23:52 +0100
parents 7c70084b125e
children 3e8b4c80ae63
files liboctave/lo-specfun.cc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/lo-specfun.cc	Thu Nov 19 12:22:08 2009 +0100
+++ b/liboctave/lo-specfun.cc	Thu Nov 19 12:23:52 2009 +0100
@@ -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.