diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-10-23 19:45:36 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-10-23 19:56:28 -0700 |
commit | f918675c8b11adb80a83000a3a984e4ff3bdcf1b (patch) | |
tree | 2472316e3bf536e0bad76751c5f3504d029b8215 /html/immutable-error.mu.html | |
parent | af7349d50c40e0604c9bb1e9a50aa1c3c0d407d8 (diff) | |
download | mu-f918675c8b11adb80a83000a3a984e4ff3bdcf1b.tar.gz |
3569
Update syntax highlighting to not color numeric locations like literals.
Diffstat (limited to 'html/immutable-error.mu.html')
-rw-r--r-- | html/immutable-error.mu.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/html/immutable-error.mu.html b/html/immutable-error.mu.html index 93afe020..8c26fbb3 100644 --- a/html/immutable-error.mu.html +++ b/html/immutable-error.mu.html @@ -32,14 +32,14 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color <span class="muRecipe">def</span> main [ <span class="Constant">local-scope</span> - x:&:num<span class="Special"> <- </span>new <span class="Constant">number:type</span> + x:&:num <span class="Special"><-</span> new <span class="Constant">number:type</span> foo x ] <span class="muRecipe">def</span> foo x:&:num [ <span class="Constant">local-scope</span> <span class="Constant">load-ingredients</span> - *x<span class="Special"> <- </span>copy <span class="Constant">34</span> <span class="Comment"># will cause an error because x is immutable in this function</span> + *x <span class="Special"><-</span> copy<span class="Constant"> 34</span> <span class="Comment"># will cause an error because x is immutable in this function</span> ] </pre> </body> |