From 47221b25c54d2b326db4bc0e6d8f178de27ba48b Mon Sep 17 00:00:00 2001 From: Rex Ford Date: Thu, 24 Jul 2008 01:09:01 -0400 Subject: [PATCH] vocab fix --- extra/math/newtons-method/newtons-method.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/math/newtons-method/newtons-method.factor b/extra/math/newtons-method/newtons-method.factor index bac41bab15..b2778a2d85 100644 --- a/extra/math/newtons-method/newtons-method.factor +++ b/extra/math/newtons-method/newtons-method.factor @@ -2,7 +2,7 @@ ! Newton's Method of approximating roots USING: kernel math math.derivatives ; -IN: newtons-method +IN: math.newtons-method