diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-11-13 19:27:12 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-11-13 19:27:12 -0800 |
commit | 293732951a2052dd079c253942922eab6c1a734d (patch) | |
tree | 6e88c51cd7de4f7885560c7f0badeb48f9f07544 | |
parent | 20a7d37f74625962c946f027074031d7cd2cbbcb (diff) | |
download | mu-293732951a2052dd079c253942922eab6c1a734d.tar.gz |
3674
-rw-r--r-- | 061text.mu | 2 | ||||
-rw-r--r-- | html/061text.mu.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/061text.mu b/061text.mu index b3b21156..62f67a7b 100644 --- a/061text.mu +++ b/061text.mu @@ -1311,7 +1311,7 @@ scenario copy-range-out-of-bounds-2 [ def parse-whole-number in:text -> out:num, error?:bool [ local-scope load-ingredients - out:num <- copy 0 + out <- copy 0 result:num <- copy 0 # temporary location i:num <- copy 0 len:num <- length *in 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"> -> </span>out:num, error?:bool [ <span class="Constant">local-scope</span> <span class="Constant">load-ingredients</span> - out:num <span class="Special"><-</span> copy<span class="Constant"> 0</span> + out <span class="Special"><-</span> copy<span class="Constant"> 0</span> result:num <span class="Special"><-</span> copy<span class="Constant"> 0</span> <span class="Comment"># temporary location</span> i:num <span class="Special"><-</span> copy<span class="Constant"> 0</span> len:num <span class="Special"><-</span> length *in |