From: inivekin Date: Sat, 20 Mar 2021 02:31:21 +0000 (+0800) Subject: Fixes runge-kutta docs example USE errors X-Git-Tag: 0.99~2410 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=eb4c120c9197023b33e38af8b31c7462b3ecebff Fixes runge-kutta docs example USE errors --- diff --git a/extra/math/runge-kutta/runge-kutta-docs.factor b/extra/math/runge-kutta/runge-kutta-docs.factor index 66c82b6c2c..b008c04a0b 100644 --- a/extra/math/runge-kutta/runge-kutta-docs.factor +++ b/extra/math/runge-kutta/runge-kutta-docs.factor @@ -5,9 +5,9 @@ HELP: { $description "Simple runge-kutta implementation for generating 4th-order approximated solutions for a set of first order differential equations" } { $examples "A lorenz attractor is a popular system to model with this: " - { $code "USING: runge-kutta runge-kutta.examples ;" "lorenz." } + { $code "USING: math.runge-kutta math.runge-kutta.examples ;" "lorenz." } "note that the produced chart is a 2 dimensional representation of a 3 dimensional solution. " "Similarly, the rabinovich-fabrikant system (stable alpha-gamma limit cycle): " - { $code "USING: runge-kutta runge-kutta.examples ;" "rabinovich-fabrikant." } + { $code "USING: math.runge-kutta math.runge-kutta.examples ;" "rabinovich-fabrikant." } } ;