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-25 22:39:31 -0800
committerKartik K. Agaram <vc@akkartik.com>2018-01-25 22:39:31 -0800
commit805d58c6aeeeba3e4989c0eed6781b3861e8fae0 (patch)
treeea5225bdd7c5fbeea912671cdc5f1c4b2b2828d7 /html/immutable-error.mu.html
parentaefa8fec6a473be459a2ff33e6bd96e7c22ced20 (diff)
downloadmu-805d58c6aeeeba3e4989c0eed6781b3861e8fae0.tar.gz
4199
Diffstat (limited to 'html/immutable-error.mu.html')
-rw-r--r--html/immutable-error.mu.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/html/immutable-error.mu.html b/html/immutable-error.mu.html
index e9145618..e98db294 100644
--- a/html/immutable-error.mu.html
+++ b/html/immutable-error.mu.html
@@ -15,12 +15,12 @@ body { font-size: 12pt; font-family: monospace; color: #aaaaaa; background-color
 a { color:#eeeeee; text-decoration: none; }
 a:hover { text-decoration: underline; }
 * { font-size: 12pt; font-size: 1em; }
+.muRecipe { color: #ff8700; }
 .LineNr { color: #444444; }
-.Comment { color: #9090ff; }
-.Comment a { color:#0000ee; text-decoration:underline; }
 .Constant { color: #00a0a0; }
 .Special { color: #c00000; }
-.muRecipe { color: #ff8700; }
+.Comment { color: #9090ff; }
+.Comment a { color:#0000ee; text-decoration:underline; }
 -->
 </style>
 
@@ -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> <a href='immutable-error.mu.html#L3'>main</a> [
+<span id="L3" class="LineNr"> 3 </span><span class="muRecipe">def</span> main [
 <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>  <a href='immutable-error.mu.html#L9'>foo</a> x
+<span id="L6" class="LineNr"> 6 </span>  foo 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> <a href='immutable-error.mu.html#L9'>foo</a> x:&amp;:num [
+<span id="L9" class="LineNr"> 9 </span><span class="muRecipe">def</span> foo 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>