From 556904cf57f874ec16a88ac37edbea89751b106f Mon Sep 17 00:00:00 2001 From: Joe Groff Date: Thu, 6 Aug 2009 16:21:53 -0400 Subject: [PATCH] simplify-callable docs --- basis/prettyprint/backend/callables/callables-docs.factor | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 basis/prettyprint/backend/callables/callables-docs.factor diff --git a/basis/prettyprint/backend/callables/callables-docs.factor b/basis/prettyprint/backend/callables/callables-docs.factor new file mode 100644 index 0000000000..968fdbcb3d --- /dev/null +++ b/basis/prettyprint/backend/callables/callables-docs.factor @@ -0,0 +1,6 @@ +USING: help help.markup help.syntax ; +IN: prettyprint.backend.callables + +HELP: simplify-callable +{ $values { "quot" callable } { "quot'" callable } } +{ $description "Converts " { $snippet "quot" } " into an equivalent quotation by simplifying usages of " { $link dip } ", " { $link call } ", " { $link curry } ", and " { $link compose } " with literal parameters. This word is used when callable objects are prettyprinted." } ;