]> gitweb.factorcode.org Git - factor.git/commitdiff
syntax: Clarify that inlined words can also be compiled stand-alone.
authorDoug Coleman <doug.coleman@gmail.com>
Mon, 23 Jul 2012 19:17:55 +0000 (12:17 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Mon, 23 Jul 2012 19:18:43 +0000 (12:18 -0700)
core/syntax/syntax-docs.factor

index 469ea33fd42b1b02ea803c9694d0a96f5fcb7e83..00561a5263f1f1b13a6ce23e3efe821ff0579040 100644 (file)
@@ -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."
 } ;