about summary refs log tree commit diff stats
path: root/html/apps/*.subx.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-01-09 20:55:15 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-10 10:35:17 -0800
commit194d1007926e617bca106b8e2e94880e095808ee (patch)
tree11e5b298550265fd4d7bf3801bb969ca6fade284 /html/apps/*.subx.html
parent0bcfe6e5cf11b27223eb5563315550ab5036f6c6 (diff)
downloadmu-194d1007926e617bca106b8e2e94880e095808ee.tar.gz
5881
Diffstat (limited to 'html/apps/*.subx.html')
-rw-r--r--html/apps/braces.subx.html2
-rw-r--r--html/apps/calls.subx.html2
-rw-r--r--html/apps/dquotes.subx.html2
3 files changed, 3 insertions, 3 deletions
diff --git a/html/apps/braces.subx.html b/html/apps/braces.subx.html
index 9f8256cf..ce9aab9a 100644
--- a/html/apps/braces.subx.html
+++ b/html/apps/braces.subx.html
@@ -60,7 +60,7 @@ if ('onhashchange' in window) {
 <span id="L1" class="LineNr">  1 </span><span class="subxComment"># Structured control flow using break/loop rather than jump.</span>
 <span id="L2" class="LineNr">  2 </span><span class="subxComment">#</span>
 <span id="L3" class="LineNr">  3 </span><span class="subxComment"># To run (on Linux):</span>
-<span id="L4" class="LineNr">  4 </span><span class="subxComment">#   $ ./ntranslate init.linux 0*.subx apps/subx-params.subx apps/braces.subx</span>
+<span id="L4" class="LineNr">  4 </span><span class="subxComment">#   $ ./translate_subx init.linux 0*.subx apps/subx-params.subx apps/braces.subx</span>
 <span id="L5" class="LineNr">  5 </span><span class="subxComment">#   $ mv a.elf apps/braces</span>
 <span id="L6" class="LineNr">  6 </span><span class="subxComment">#</span>
 <span id="L7" class="LineNr">  7 </span><span class="subxComment"># Example 1:</span>
diff --git a/html/apps/calls.subx.html b/html/apps/calls.subx.html
index c8949bbd..6dc65a1e 100644
--- a/html/apps/calls.subx.html
+++ b/html/apps/calls.subx.html
@@ -62,7 +62,7 @@ if ('onhashchange' in window) {
 <span id="L1" class="LineNr">   1 </span><span class="subxComment"># Function calls in a single line.</span>
 <span id="L2" class="LineNr">   2 </span><span class="subxComment">#</span>
 <span id="L3" class="LineNr">   3 </span><span class="subxComment"># To run (on Linux):</span>
-<span id="L4" class="LineNr">   4 </span><span class="subxComment">#   $ ./ntranslate init.linux 0*.subx apps/subx-params.subx apps/calls.subx</span>
+<span id="L4" class="LineNr">   4 </span><span class="subxComment">#   $ ./translate_subx init.linux 0*.subx apps/subx-params.subx apps/calls.subx</span>
 <span id="L5" class="LineNr">   5 </span><span class="subxComment">#   $ mv a.elf apps/calls</span>
 <span id="L6" class="LineNr">   6 </span><span class="subxComment">#</span>
 <span id="L7" class="LineNr">   7 </span><span class="subxComment"># Example 1:</span>
diff --git a/html/apps/dquotes.subx.html b/html/apps/dquotes.subx.html
index f6a880b6..5f588bd5 100644
--- a/html/apps/dquotes.subx.html
+++ b/html/apps/dquotes.subx.html
@@ -154,7 +154,7 @@ if ('onhashchange' in window) {
 <span id="L91" class="LineNr">  91 </span>    <span class="subxComment">#      # TODO: When it was originally written dquotes ran before assort, so</span>
 <span id="L92" class="LineNr">  92 </span>    <span class="subxComment">#      # it assumes lots of segment headers, and emits a new segment of its</span>
 <span id="L93" class="LineNr">  93 </span>    <span class="subxComment">#      # own. We've since had to reorder the phases (see the explanation</span>
-<span id="L94" class="LineNr">  94 </span>    <span class="subxComment">#      # for a.assort2 in ntranslate). We could clean up a.assort2 if we</span>
+<span id="L94" class="LineNr">  94 </span>    <span class="subxComment">#      # for a.assort2 in translate_subx). We could clean up a.assort2 if we</span>
 <span id="L95" class="LineNr">  95 </span>    <span class="subxComment">#      # conditionally emit the previous line. But this would require</span>
 <span id="L96" class="LineNr">  96 </span>    <span class="subxComment">#      # teaching dquotes to parse segment headers, so maybe that's not</span>
 <span id="L97" class="LineNr">  97 </span>    <span class="subxComment">#      # best..</span>