math-docs: fix `times` documentation

The word `each` used to loop over integers in the past, but it does not
anymore.
master
Alexander Iljin 2020-06-13 13:33:41 +02:00 committed by John Benediktsson
parent 5c3efc5cee
commit 671aa228f3
1 changed files with 1 additions and 1 deletions

View File

@ -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" }
} ;