]> gitweb.factorcode.org Git - factor.git/blobdiff - unmaintained/math/derivatives/derivatives-docs.factor
tools.test: Make the flag public. Finish porting tester changes to fuzzer.
[factor.git] / unmaintained / math / derivatives / derivatives-docs.factor
index 1630b2f9de4f40eb45d0071cf3411de5c36c2f3b..84f456aacf0a8f97519ed3973fbd75fc6246039c 100644 (file)
@@ -1,7 +1,7 @@
 USING: help.markup help.syntax math math.functions ;
 IN: math.derivatives
 
-HELP: derivative ( x function -- m )
+HELP: derivative
 { $values { "x" "a position on the function" } { "function" "a differentiable function" } { "m" number } }
 { $description
     "Approximates the slope of the tangent line by using Ridders' "
@@ -96,8 +96,10 @@ HELP: derivative-func
 
 ARTICLE: "derivatives" "The Derivative Toolkit"
 "A toolkit for computing the derivative of functions."
-{ $subsection derivative }
-{ $subsection derivative-func }
-{ $subsection (derivative) } ;
+{ $subsections
+    derivative
+    derivative-func
+    (derivative)
+} ;
 
 ABOUT: "derivatives"