From 671aa228f3598078e8c20191ea7aa2baf87f6836 Mon Sep 17 00:00:00 2001 From: Alexander Iljin Date: Sat, 13 Jun 2020 13:33:41 +0200 Subject: [PATCH] math-docs: fix `times` documentation The word `each` used to loop over integers in the past, but it does not anymore. --- 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 236ba6f4cc..4be97fdf48 100644 --- a/core/math/math-docs.factor +++ b/core/math/math-docs.factor @@ -312,7 +312,7 @@ HELP: unless-zero HELP: times { $values { "n" integer } { "quot" quotation } } { $description "Calls the quotation " { $snippet "n" } " times." } -{ $notes "If you need to pass the current index to the quotation, use " { $link each } "." } +{ $notes "If you need to pass the current index to the quotation, use " { $link each-integer } "." } { $examples { $example "USING: io math ;" "3 [ \"Hi\" print ] times" "Hi\nHi\nHi" } } ;