about summary refs log tree commit diff stats
path: root/html/apps/braces.subx.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/apps/braces.subx.html')
-rw-r--r--html/apps/braces.subx.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/apps/braces.subx.html b/html/apps/braces.subx.html
index 50639b81..9f8256cf 100644
--- a/html/apps/braces.subx.html
+++ b/html/apps/braces.subx.html
@@ -134,7 +134,7 @@ if ('onhashchange' in window) {
 <span id="L75" class="LineNr"> 75 </span>    b8/copy-to-eax 1/imm32/exit
 <span id="L76" class="LineNr"> 76 </span>    cd/syscall 0x80/imm8
 <span id="L77" class="LineNr"> 77 </span>
-<span id="L78" class="LineNr"> 78 </span><span class="subxFunction">subx-braces</span>:  <span class="subxComment"># in : (address buffered-file), out : (address buffered-file)</span>
+<span id="L78" class="LineNr"> 78 </span><span class="subxFunction">subx-braces</span>:  <span class="subxComment"># in : (addr buffered-file), out : (addr buffered-file)</span>
 <span id="L79" class="LineNr"> 79 </span>    <span class="subxComment"># pseudocode:</span>
 <span id="L80" class="LineNr"> 80 </span>    <span class="subxComment">#   var line : (ref stream byte 512)</span>
 <span id="L81" class="LineNr"> 81 </span>    <span class="subxComment">#   var label-stack : (stack int 32)  # at most 32 levels of nesting</span>
@@ -154,7 +154,7 @@ if ('onhashchange' in window) {
 <span id="L95" class="LineNr"> 95 </span>    <span class="subxComment">#       print(out, &quot;_break&quot; top &quot;:\n&quot;)</span>
 <span id="L96" class="LineNr"> 96 </span>    <span class="subxComment">#       continue</span>
 <span id="L97" class="LineNr"> 97 </span>    <span class="subxComment">#     while true</span>
-<span id="L98" class="LineNr"> 98 </span>    <span class="subxComment">#       var word-slice : (address slice) = next-word-or-string(line)</span>
+<span id="L98" class="LineNr"> 98 </span>    <span class="subxComment">#       var word-slice : (addr slice) = next-word-or-string(line)</span>
 <span id="L99" class="LineNr"> 99 </span>    <span class="subxComment">#       if slice-empty?(word-slice)                         # end of line</span>
 <span id="L100" class="LineNr">100 </span>    <span class="subxComment">#         break</span>
 <span id="L101" class="LineNr">101 </span>    <span class="subxComment">#       if slice-starts-with?(word-slice, &quot;#&quot;)              # comment</span>