about summary refs log tree commit diff stats
path: root/html/immutable-error.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2018-01-27 00:28:51 -0800
committerKartik K. Agaram <vc@akkartik.com>2018-01-27 00:28:51 -0800
commitb301e0c0e6b54dceecbe4ee1ef8f610411015c30 (patch)
treed40803d412718221d7c92fd50c189563877b8301 /html/immutable-error.mu.html
parent805d58c6aeeeba3e4989c0eed6781b3861e8fae0 (diff)
downloadmu-b301e0c0e6b54dceecbe4ee1ef8f610411015c30.tar.gz
4200
Forgot to set up exuberant_ctags_rc as .ctags on new laptop.
Diffstat (limited to 'html/immutable-error.mu.html')
-rw-r--r--html/immutable-error.mu.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/html/immutable-error.mu.html b/html/immutable-error.mu.html
index e98db294..5beae585 100644
--- a/html/immutable-error.mu.html
+++ b/html/immutable-error.mu.html
@@ -57,13 +57,13 @@ if ('onhashchange' in window) {
 <pre id='vimCodeElement'>
 <span id="L1" class="LineNr"> 1 </span><span class="Comment"># compare mutable.mu</span>
 <span id="L2" class="LineNr"> 2 </span>
-<span id="L3" class="LineNr"> 3 </span><span class="muRecipe">def</span> main [
+<span id="L3" class="LineNr"> 3 </span><span class="muRecipe">def</span> <a href='immutable-error.mu.html#L3'>main</a> [
 <span id="L4" class="LineNr"> 4 </span>  <span class="Constant">local-scope</span>
 <span id="L5" class="LineNr"> 5 </span>  x:&amp;:num <span class="Special">&lt;-</span> new <span class="Constant">number:type</span>
-<span id="L6" class="LineNr"> 6 </span>  foo x
+<span id="L6" class="LineNr"> 6 </span>  <a href='immutable-error.mu.html#L9'>foo</a> x
 <span id="L7" class="LineNr"> 7 </span>]
 <span id="L8" class="LineNr"> 8 </span>
-<span id="L9" class="LineNr"> 9 </span><span class="muRecipe">def</span> foo x:&amp;:num [
+<span id="L9" class="LineNr"> 9 </span><span class="muRecipe">def</span> <a href='immutable-error.mu.html#L9'>foo</a> x:&amp;:num [
 <span id="L10" class="LineNr">10 </span>  <span class="Constant">local-scope</span>
 <span id="L11" class="LineNr">11 </span>  <span class="Constant">load-inputs</span>
 <span id="L12" class="LineNr">12 </span>  *x <span class="Special">&lt;-</span> copy<span class="Constant"> 34</span>  <span class="Comment"># will cause an error because x is immutable in this function</span>