about summary refs log tree commit diff stats
path: root/html/apps/parse-int.mu.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-08-22 13:30:48 -0700
committerKartik Agaram <vc@akkartik.com>2020-08-22 13:30:48 -0700
commit0361a76d86a38ca02778afc915d86c4ffa608bf7 (patch)
treeb58b8dc27854a02a40f93bc1fa47a565b92e30a0 /html/apps/parse-int.mu.html
parent426fcd3ec3b3891a0670c20cae9bd342184719b4 (diff)
downloadmu-0361a76d86a38ca02778afc915d86c4ffa608bf7.tar.gz
6724
Diffstat (limited to 'html/apps/parse-int.mu.html')
-rw-r--r--html/apps/parse-int.mu.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/apps/parse-int.mu.html b/html/apps/parse-int.mu.html
index 040b0d1e..be99f967 100644
--- a/html/apps/parse-int.mu.html
+++ b/html/apps/parse-int.mu.html
@@ -64,10 +64,10 @@ if ('onhashchange' in window) {
 <span id="L6" class="LineNr"> 6 </span><span class="Comment">#   $ echo $?</span>
 <span id="L7" class="LineNr"> 7 </span><span class="Comment">#   123</span>
 <span id="L8" class="LineNr"> 8 </span>
-<span id="L9" class="LineNr"> 9 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parse-int.mu.html#L9'>main</a></span> _args: (addr array (addr array byte))<span class="PreProc"> -&gt; </span>exit-status/<span class="Constant">ebx</span>: int <span class="Delimiter">{</span>
+<span id="L9" class="LineNr"> 9 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parse-int.mu.html#L9'>main</a></span> _args: (addr array addr array byte)<span class="PreProc"> -&gt; </span>exit-status/<span class="Constant">ebx</span>: int <span class="Delimiter">{</span>
 <span id="L10" class="LineNr">10 </span>$main-body: <span class="Delimiter">{</span>
 <span id="L11" class="LineNr">11 </span>  <span class="Comment"># if no args, print a message and exit</span>
-<span id="L12" class="LineNr">12 </span>  <span class="PreProc">var</span> args/<span class="Constant">esi</span>: (addr array (addr array byte)) <span class="SpecialChar">&lt;-</span> copy _args
+<span id="L12" class="LineNr">12 </span>  <span class="PreProc">var</span> args/<span class="Constant">esi</span>: (addr array addr array byte) <span class="SpecialChar">&lt;-</span> copy _args
 <span id="L13" class="LineNr">13 </span>  <span class="PreProc">var</span> n/<span class="Constant">ecx</span>: int <span class="SpecialChar">&lt;-</span> length args
 <span id="L14" class="LineNr">14 </span>  compare n, <span class="Constant">1</span>
 <span id="L15" class="LineNr">15 </span>  <span class="Delimiter">{</span>