From c99e6d79cdfce941e5bccce7cb07198d0d8e09d4 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Fri, 2 Sep 2011 21:13:29 -0700 Subject: [PATCH] math: fix docs for 'when-zero'. --- core/math/math-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/math/math-docs.factor b/core/math/math-docs.factor index 079fa56acd..1449b46d76 100644 --- a/core/math/math-docs.factor +++ b/core/math/math-docs.factor @@ -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 ;"