From e8fb249dc1560d3aae8b40da3f31b155da5abc07 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Mon, 22 Mar 2021 17:31:51 -0700 Subject: [PATCH] math.runge-kutta: fix help-lint. --- extra/math/runge-kutta/runge-kutta-docs.factor | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extra/math/runge-kutta/runge-kutta-docs.factor b/extra/math/runge-kutta/runge-kutta-docs.factor index b008c04a0b..66279768df 100644 --- a/extra/math/runge-kutta/runge-kutta-docs.factor +++ b/extra/math/runge-kutta/runge-kutta-docs.factor @@ -1,7 +1,8 @@ -USING: help.markup help.syntax ; +USING: help.markup help.syntax kernel ; IN: math.runge-kutta HELP: +{ $values { "dxn..n/dt" object } { "delta" object } { "initial-state" object } { "t-limit" object } { "seq" object } } { $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: " -- 2.34.1