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