]> gitweb.factorcode.org Git - factor.git/commitdiff
math: fix docs for 'when-zero'.
authorJohn Benediktsson <mrjbq7@gmail.com>
Sat, 3 Sep 2011 04:13:29 +0000 (21:13 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sat, 3 Sep 2011 04:13:29 +0000 (21:13 -0700)
core/math/math-docs.factor

index 079fa56acd60fde5e9d5bfb4e7cf81a31b85bdb6..1449b46d76ba6161056eb5f55d1bf7f900e15ec8 100644 (file)
@@ -262,7 +262,7 @@ HELP: if-zero
 HELP: when-zero
 { $values
      { "n" number } { "quot" "the first quotation of an " { $link if-zero } } }
-{ $description "Makes an implicit check if the sequence is empty. A zero is dropped and the " { $snippet "quot" } " is called." }
+{ $description "Makes an implicit check if the number is zero. A zero is dropped and the " { $snippet "quot" } " is called." }
 { $examples "This word is equivalent to " { $link if-zero } " with an empty second quotation:"
     { $example
     "USING: math prettyprint ;"