about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-07-25 02:54:22 -0700
committerKartik Agaram <vc@akkartik.com>2019-07-25 02:54:22 -0700
commitc8c2a66cd75b72ea9d06b37a3469885c58bf6d63 (patch)
tree0097bc8b2274aef209b44901aef35e385de5e814
parent695f9bf8d0a7d0a871b8ab75270ceb29715d9be3 (diff)
downloadmu-c8c2a66cd75b72ea9d06b37a3469885c58bf6d63.tar.gz
5469
-rw-r--r--subx/Readme.md2
-rwxr-xr-xsubx/test_apps2
2 files changed, 2 insertions, 2 deletions
diff --git a/subx/Readme.md b/subx/Readme.md
index 8bf3efa6..0593ca8d 100644
--- a/subx/Readme.md
+++ b/subx/Readme.md
@@ -71,7 +71,7 @@ You can use SubX to translate itself. For example, running natively on Linux:
   $ ./subx translate 0*.subx apps/subx-common.subx apps/tests.subx  -o tests
   $ chmod +x hex survey pack assort dquotes tests
 
-  # use the new translator phases to translate subx programs (including translator phases!)
+  # use the new translator phases to translate subx programs
   $ cat examples/ex1.subx |./tests |./dquotes |./assort |./pack |./survey |./hex > a.elf
   $ chmod +x a.elf
   $ ./a.elf
diff --git a/subx/test_apps b/subx/test_apps
index af3937d5..b8c142be 100755
--- a/subx/test_apps
+++ b/subx/test_apps
@@ -298,7 +298,7 @@ test `uname` = 'Linux'  &&  {
   cat examples/ex10.subx |apps/tests |apps/dquotes |apps/assort |apps/pack |apps/survey |apps/hex |diff examples/ex10 -
 }
 
-# SubX translator phases only run natively. Emulated run times out on travis-ci.org.
+# Only native runs beyond this point. Emulated runs time out on travis-ci.org.
 test `uname` = 'Linux'  ||  exit 0
 
 echo ex11