]> gitweb.factorcode.org Git - factor.git/commitdiff
fix typo in math docs
authorDoug Coleman <doug.coleman@gmail.com>
Fri, 27 Feb 2009 00:10:11 +0000 (18:10 -0600)
committerDoug Coleman <doug.coleman@gmail.com>
Fri, 27 Feb 2009 00:10:11 +0000 (18:10 -0600)
core/math/math-docs.factor

index 94ff2c1f293121d2886a3de169189b3b9a806af4..101557d0cf80b353186a370e6f42c834a8c5344f 100644 (file)
@@ -308,7 +308,7 @@ HELP: find-last-integer
 
 HELP: byte-array>bignum
 { $values { "byte-array" byte-array } { "n" integer } }
-{ $description "Converts a byte-array, interpreted as little-endian, into a bignum integer. User code should call " { $link >le } " or " { $link >be } " instead." } ;
+{ $description "Converts a byte-array, interpreted as little-endian, into a bignum integer. User code should call " { $link le> } " or " { $link be> } " instead." } ;
 
 ARTICLE: "division-by-zero" "Division by zero"
 "Floating point division never raises an error if the denominator is zero. This means that if at least one of the two inputs to " { $link / } ", " { $link /f } " or " { $link mod } " is a float, the result will be a floating point infinity or not a number value."