From eb4c120c9197023b33e38af8b31c7462b3ecebff Mon Sep 17 00:00:00 2001 From: inivekin Date: Sat, 20 Mar 2021 10:31:21 +0800 Subject: [PATCH] Fixes runge-kutta docs example USE errors --- extra/math/runge-kutta/runge-kutta-docs.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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." } } ; -- 2.34.1