]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/math/derivatives/syntax/syntax-docs.factor
factor: clean up whitespace in -docs files
[factor.git] / extra / math / derivatives / syntax / syntax-docs.factor
index 2273e7b83c3f467cc3421b3c09231fdc86b3e3f2..d477bee68d42f2ce2b9b6672d148cdf1024e3b7b 100644 (file)
@@ -5,7 +5,7 @@ IN: math.derivatives.syntax
 
 HELP: DERIVATIVE:
 { $description "Defines the derivative of a word by setting its " { $snippet "derivative" } " word property.  Reads a word followed by " { $snippet "n" } " quotations, giving the " { $snippet "n" } " partial derivatives of the word with respect to each of its arguments successively.  Each quotation should take " { $snippet "n + 1" } " inputs, where the first input is an increment and the last " { $snippet "n" } " inputs are the point at which to evaluate the derivative.  The derivative should be a linear function of the increment, and should have the same number of outputs as the original word." }
-{ $examples 
+{ $examples
     { $unchecked-example "USING: math math.functions math.derivatives.syntax ;"
     "DERIVATIVE: sin [ cos * ]"
     "DERIVATIVE: * [ nip * ] [ drop * ]" "" }