From 126a3e486f6f6319a9d5fa4d61d22e5dceded8a0 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Mon, 23 Jul 2012 12:17:55 -0700 Subject: [PATCH] syntax: Clarify that inlined words can also be compiled stand-alone. --- core/syntax/syntax-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/syntax/syntax-docs.factor b/core/syntax/syntax-docs.factor index 469ea33fd4..00561a5263 100644 --- a/core/syntax/syntax-docs.factor +++ b/core/syntax/syntax-docs.factor @@ -274,7 +274,7 @@ HELP: inline { $description "Declares the most recently defined word as an inline word. The optimizing compiler copies definitions of inline words when compiling calls to them." $nl - "Combinators must be inlined in order to compile with the optimizing compiler - see " { $link "inference-combinators" } ". For any other word, inlining is merely an optimization." + "Combinators must be inlined in order to compile with the optimizing compiler - see " { $link "inference-combinators" } ". For any other word, inlining is merely an optimization. Note that inlined words that can be compiled stand-alone are also, themselves, compiled by the optimizing compiler." $nl "The non-optimizing quotation compiler ignores inlining declarations." } ;