]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/math/derivatives/derivatives.factor
factor: Trim whitespace after ! comments and a few USING: lines that got skipped...
[factor.git] / extra / math / derivatives / derivatives.factor
index 0ae18e557f14e2a5470e0f9b686454eac3781abc..3e62e7d19298b96d4599da14246f3be7a43cb205 100644 (file)
@@ -14,7 +14,7 @@ DERIVATIVE: + [ 2drop ] [ 2drop ]
 DERIVATIVE: - [ 2drop ] [ 2drop neg ]
 DERIVATIVE: * [ nip * ] [ drop * ]
 DERIVATIVE: / [ nip / ] [ sq / neg * ]
-! Conditional checks if the epsilon-part of the exponent is 
+! Conditional checks if the epsilon-part of the exponent is
 ! 0 to avoid getting float answers for integer powers.
 DERIVATIVE: ^ [ [ 1 - ^ ] keep * * ]
     [ [ dup zero? ] 2dip [ 3drop 0 ] [ [ ^ ] keep log * * ] if ]