about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-07-26 11:26:11 -0700
committerKartik Agaram <vc@akkartik.com>2019-07-26 11:26:11 -0700
commit18b0f13ecc45ace2dd0217ec6e4f6e033f0c53f1 (patch)
treeb2da1871b851b0224a9e4d53c9ca763a9c0e6c14
parent0c7f08cea081644ef1f79cda065c716f76b7db32 (diff)
downloadmu-18b0f13ecc45ace2dd0217ec6e4f6e033f0c53f1.tar.gz
5480
-rw-r--r--subx/Readme.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/subx/Readme.md b/subx/Readme.md
index 0593ca8d..61cb8a91 100644
--- a/subx/Readme.md
+++ b/subx/Readme.md
@@ -62,7 +62,7 @@ covered by automated tests. SubX's tagline: tests before syntax.
 You can use SubX to translate itself. For example, running natively on Linux:
 
   ```sh
-  # generate translator phases using C++
+  # generate translator phases using the C++ translator
   $ ./subx translate 0*.subx apps/subx-common.subx apps/hex.subx    -o hex
   $ ./subx translate 0*.subx apps/subx-common.subx apps/survey.subx -o survey
   $ ./subx translate 0*.subx apps/subx-common.subx apps/pack.subx   -o pack
@@ -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
+  # use the generated translator phases to translate SubX programs
   $ cat examples/ex1.subx |./tests |./dquotes |./assort |./pack |./survey |./hex > a.elf
   $ chmod +x a.elf
   $ ./a.elf