diff --git a/extra/math/newtons-method/newtons-method.factor b/extra/math/newtons-method/newtons-method.factor index b2778a2d85..5bf71deac8 100644 --- a/extra/math/newtons-method/newtons-method.factor +++ b/extra/math/newtons-method/newtons-method.factor @@ -1,4 +1,4 @@ -! Copyright © 2008 Reginald Keith Ford II +! Copyright © 2008 Reginald Keith Ford II ! Newton's Method of approximating roots USING: kernel math math.derivatives ; @@ -6,6 +6,6 @@ IN: math.newtons-method -: newton-method ( guess function -- x ) newton-precision [ [ newton-step ] keep ] times drop ; +: newtons-method ( guess function -- x ) newton-precision [ [ newton-step ] keep ] times drop ;