From e49ee006d1a5a1843e2ea59ff209c793232b676c Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Tue, 11 Nov 2008 08:50:48 -0600 Subject: [PATCH] Fix loop combinator docs --- core/kernel/kernel-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/kernel/kernel-docs.factor b/core/kernel/kernel-docs.factor index 61e10a9c00..71f3980a6c 100644 --- a/core/kernel/kernel-docs.factor +++ b/core/kernel/kernel-docs.factor @@ -644,7 +644,7 @@ $nl HELP: loop { $values { "pred" quotation } } -{ $description "Calls the quotation repeatedly until the output is true." } + { $description "Calls the quotation repeatedly until it outputs " { $link f } "." } { $examples "Loop until we hit a zero:" { $unchecked-example "USING: kernel random math io ; " " [ \"hi\" write bl 10 random zero? not ] loop"