about summary refs log tree commit diff stats
path: root/subx/021translate.cc
diff options
context:
space:
mode:
Diffstat (limited to 'subx/021translate.cc')
-rw-r--r--subx/021translate.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/subx/021translate.cc b/subx/021translate.cc
index 3ea090ee..c3d780f1 100644
--- a/subx/021translate.cc
+++ b/subx/021translate.cc
@@ -3,9 +3,9 @@
 //: "compiler".
 //: Motto: Abstract nothing, check everything.
 //:
-//: Workflow: read 'source' file as a single string. Run a series of
-//: transforms on it, each converting to a new string. The final string should
-//: be just machine code and comments, suitable to pass to load_program().
+//: Workflow: read 'source' file. Run a series of transforms on it, each
+//: passing through what it doesn't understand. The final program should be
+//: just machine code, suitable to write to an ELF binary.
 
 :(before "End Types")
 typedef void (*transform_fn)(const string& input, string& output);