vocab fix

db4
Rex Ford 2008-07-24 01:09:01 -04:00
parent 4fc9860c0a
commit 47221b25c5
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
! Newton's Method of approximating roots
USING: kernel math math.derivatives ;
IN: newtons-method
IN: math.newtons-method
<PRIVATE
: newton-step ( x function -- x2 ) dupd [ call ] [ derivative ] 2bi / - ;