]> gitweb.factorcode.org Git - factor.git/commitdiff
Fixes runge-kutta docs example USE errors
authorinivekin <inivekin@gmail.com>
Sat, 20 Mar 2021 02:31:21 +0000 (10:31 +0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sat, 20 Mar 2021 04:08:40 +0000 (21:08 -0700)
extra/math/runge-kutta/runge-kutta-docs.factor

index 66c82b6c2c729de997b14ce398e1b37a74f5bb88..b008c04a0b73aa50c8648ed2f243ed401078de70 100644 (file)
@@ -5,9 +5,9 @@ HELP: <runge-kutta-4>
 { $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." }
 } ;