about summary refs log tree commit diff stats
path: root/html/061text.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-11-13 19:27:12 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-11-13 19:27:12 -0800
commit293732951a2052dd079c253942922eab6c1a734d (patch)
tree6e88c51cd7de4f7885560c7f0badeb48f9f07544 /html/061text.mu.html
parent20a7d37f74625962c946f027074031d7cd2cbbcb (diff)
downloadmu-293732951a2052dd079c253942922eab6c1a734d.tar.gz
3674
Diffstat (limited to 'html/061text.mu.html')
-rw-r--r--html/061text.mu.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/html/061text.mu.html b/html/061text.mu.html
index 08a836b3..95ad7a28 100644
--- a/html/061text.mu.html
+++ b/html/061text.mu.html
@@ -1345,7 +1345,7 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color
 <span class="muRecipe">def</span> parse-whole-number in:text<span class="muRecipe"> -&gt; </span>out:num, error?:bool [
   <span class="Constant">local-scope</span>
   <span class="Constant">load-ingredients</span>
-  out:num <span class="Special">&lt;-</span> copy<span class="Constant"> 0</span>
+  out <span class="Special">&lt;-</span> copy<span class="Constant"> 0</span>
   result:num <span class="Special">&lt;-</span> copy<span class="Constant"> 0</span>  <span class="Comment"># temporary location</span>
   i:num <span class="Special">&lt;-</span> copy<span class="Constant"> 0</span>
   len:num <span class="Special">&lt;-</span> length *in