about summary refs log tree commit diff stats
path: root/html/apps/tile
diff options
context:
space:
mode:
Diffstat (limited to 'html/apps/tile')
-rw-r--r--html/apps/tile/environment.mu.html2
-rw-r--r--html/apps/tile/word.mu.html4
2 files changed, 3 insertions, 3 deletions
diff --git a/html/apps/tile/environment.mu.html b/html/apps/tile/environment.mu.html
index de35e39e..e11ef11a 100644
--- a/html/apps/tile/environment.mu.html
+++ b/html/apps/tile/environment.mu.html
@@ -874,7 +874,7 @@ if ('onhashchange' in window) {
 <span id="L814" class="LineNr"> 814 </span><span class="Delimiter">}</span>
 <span id="L815" class="LineNr"> 815 </span>
 <span id="L816" class="LineNr"> 816 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='environment.mu.html#L816'>arg-exists?</a></span> _f-ah: (addr handle function), arg: (addr word)<span class="PreProc"> -&gt; </span>_/<span class="Constant">ebx</span>: boolean <span class="Delimiter">{</span>
-<span id="L817" class="LineNr"> 817 </span>  <span class="PreProc">var</span> f-ah/<span class="Constant">eax</span>: (addr handle function) <span class="SpecialChar">&lt;-</span> copy *_f-ah
+<span id="L817" class="LineNr"> 817 </span>  <span class="PreProc">var</span> f-ah/<span class="Constant">eax</span>: (addr handle function) <span class="SpecialChar">&lt;-</span> copy _f-ah
 <span id="L818" class="LineNr"> 818 </span>  <span class="PreProc">var</span> f/<span class="Constant">eax</span>: (addr function) <span class="SpecialChar">&lt;-</span> <a href='../../120allocate.subx.html#L256'>lookup</a> *f-ah
 <span id="L819" class="LineNr"> 819 </span>  <span class="PreProc">var</span> args-ah/<span class="Constant">eax</span>: (addr handle word) <span class="SpecialChar">&lt;-</span> <a href='../../131table.subx.html#L26'>get</a> f, args
 <span id="L820" class="LineNr"> 820 </span>  <span class="PreProc">var</span> result/<span class="Constant">ebx</span>: boolean <span class="SpecialChar">&lt;-</span> word-exists? args-ah, arg
diff --git a/html/apps/tile/word.mu.html b/html/apps/tile/word.mu.html
index 61f935da..3c66be45 100644
--- a/html/apps/tile/word.mu.html
+++ b/html/apps/tile/word.mu.html
@@ -582,7 +582,7 @@ if ('onhashchange' in window) {
 <span id="L523" class="LineNr">523 </span>
 <span id="L524" class="LineNr">524 </span><span class="muComment"># ABSOLUTELY GHASTLY</span>
 <span id="L525" class="LineNr">525 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='word.mu.html#L525'>word-exists?</a></span> _haystack-ah: (addr handle word), _needle: (addr word)<span class="PreProc"> -&gt; </span>_/<span class="Constant">ebx</span>: boolean <span class="Delimiter">{</span>
-<span id="L526" class="LineNr">526 </span>  <span class="PreProc">var</span> needle-name-storage: (handle addr byte)
+<span id="L526" class="LineNr">526 </span>  <span class="PreProc">var</span> needle-name-storage: (handle array byte)
 <span id="L527" class="LineNr">527 </span>  <span class="PreProc">var</span> needle-name-ah/<span class="Constant">eax</span>: (addr handle array byte) <span class="SpecialChar">&lt;-</span> address needle-name-storage
 <span id="L528" class="LineNr">528 </span>  <a href='word.mu.html#L509'>word-to-string</a> _needle, needle-name-ah  <span class="muComment"># profligate leak</span>
 <span id="L529" class="LineNr">529 </span>  <span class="PreProc">var</span> _needle-name/<span class="Constant">eax</span>: (addr array byte) <span class="SpecialChar">&lt;-</span> <a href='../../120allocate.subx.html#L256'>lookup</a> *needle-name-ah
@@ -596,7 +596,7 @@ if ('onhashchange' in window) {
 <span id="L537" class="LineNr">537 </span>    <span class="PreProc">return</span> <span class="Constant">0</span>  <span class="muComment"># false</span>
 <span id="L538" class="LineNr">538 </span>  <span class="Delimiter">}</span>
 <span id="L539" class="LineNr">539 </span>  <span class="muComment"># check curr</span>
-<span id="L540" class="LineNr">540 </span>  <span class="PreProc">var</span> curr-name-storage: (handle addr byte)
+<span id="L540" class="LineNr">540 </span>  <span class="PreProc">var</span> curr-name-storage: (handle array byte)
 <span id="L541" class="LineNr">541 </span>  <span class="PreProc">var</span> curr-name-ah/<span class="Constant">ecx</span>: (addr handle array byte) <span class="SpecialChar">&lt;-</span> address curr-name-storage
 <span id="L542" class="LineNr">542 </span>  <a href='word.mu.html#L509'>word-to-string</a> curr, curr-name-ah  <span class="muComment"># profligate leak</span>
 <span id="L543" class="LineNr">543 </span>  <span class="PreProc">var</span> curr-name/<span class="Constant">eax</span>: (addr array byte) <span class="SpecialChar">&lt;-</span> <a href='../../120allocate.subx.html#L256'>lookup</a> *curr-name-ah