From: John Benediktsson Date: Sun, 18 Dec 2022 18:16:20 +0000 (-0800) Subject: continuations: fix help-lint warnings. X-Git-Tag: 0.99~991 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=4ff1f08e54d6d4c4b14a6cc9cb9fe90a516a4305 continuations: fix help-lint warnings. --- diff --git a/core/continuations/continuations-docs.factor b/core/continuations/continuations-docs.factor index 7c5fcaa072..148180d7df 100644 --- a/core/continuations/continuations-docs.factor +++ b/core/continuations/continuations-docs.factor @@ -188,7 +188,7 @@ HELP: ignore-error { $description "Calls the quotation. If an exception is thrown which is matched by the 'check' quotation it is ignored. Otherwise the error is rethrown." } ; HELP: ignore-error/f -{ $values { "quot" quotation } { "check" quotation } } +{ $values { "quot" quotation } { "check" quotation } { "x/f" { $maybe object } } } { $description "Like " { $link ignore-error } ", but if a matched exception is thrown " { $link f } " is put on the stack." } ; HELP: ignore-errors