about summary refs log tree commit diff stats
path: root/html/010vm.cc.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-10-22 16:56:07 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-10-22 16:56:07 -0700
commit9a81d7460fdb16f4e77712e5381d9db8781f5ae6 (patch)
tree43b05169535fe33e65ecbf61f3fb3ada5f75ed52 /html/010vm.cc.html
parent22f4b76344b2d639cbfcaad56ed681670d436548 (diff)
downloadmu-9a81d7460fdb16f4e77712e5381d9db8781f5ae6.tar.gz
3561
Diffstat (limited to 'html/010vm.cc.html')
-rw-r--r--html/010vm.cc.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/html/010vm.cc.html b/html/010vm.cc.html
index 13e76b37..22196064 100644
--- a/html/010vm.cc.html
+++ b/html/010vm.cc.html
@@ -154,9 +154,9 @@ Memory<span class="Delimiter">.</span>clear<span class="Delimiter">();</span>
 <span class="Comment">// value 97 as the letter 'a', while a different location of type 'number'</span>
 <span class="Comment">// would not.</span>
 <span class="Comment">//</span>
-<span class="Comment">// Unlike most computers today, mu stores types in a single big table, shared</span>
-<span class="Comment">// by all the mu programs on the computer. This is useful in providing a</span>
-<span class="Comment">// seamless experience to help understand arbitrary mu programs.</span>
+<span class="Comment">// Unlike most computers today, Mu stores types in a single big table, shared</span>
+<span class="Comment">// by all the Mu programs on the computer. This is useful in providing a</span>
+<span class="Comment">// seamless experience to help understand arbitrary Mu programs.</span>
 <span class="Normal">typedef</span> <span class="Normal">int</span> type_ordinal<span class="Delimiter">;</span>
 <span class="Delimiter">:(before &quot;End Globals&quot;)</span>
 map&lt;string<span class="Delimiter">,</span> type_ordinal&gt; Type_ordinal<span class="Delimiter">;</span>
@@ -230,7 +230,7 @@ atexit<span class="Delimiter">(</span>teardown_types<span class="Delimiter">);</
 <span class="Delimiter">:(code)</span>
 <span class="Comment">//: It's all very well to construct recipes out of other recipes, but we need</span>
 <span class="Comment">//: to know how to do *something* out of the box. For the following</span>
-<span class="Comment">//: recipes there are only codes, no entries in the book, because mu just knows</span>
+<span class="Comment">//: recipes there are only codes, no entries in the book, because Mu just knows</span>
 <span class="Comment">//: what to do for them.</span>
 <span class="Normal">void</span> setup_recipes<span class="Delimiter">()</span> <span class="Delimiter">{</span>
   Recipe<span class="Delimiter">.</span>clear<span class="Delimiter">();</span>  Recipe_ordinal<span class="Delimiter">.</span>clear<span class="Delimiter">();</span>
@@ -568,7 +568,7 @@ string_tree* property<span class="Delimiter">(</span><span class="Normal">const<
 <span class="Delimiter">}</span>
 
 <span class="Delimiter">:(before &quot;End Globals&quot;)</span>
-<span class="Normal">extern</span> <span class="Normal">const</span> string Ignore<span class="Delimiter">(</span><span class="Constant">&quot;,&quot;</span><span class="Delimiter">);</span>  <span class="Comment">// commas are ignored in mu except within [] strings</span>
+<span class="Normal">extern</span> <span class="Normal">const</span> string Ignore<span class="Delimiter">(</span><span class="Constant">&quot;,&quot;</span><span class="Delimiter">);</span>  <span class="Comment">// commas are ignored in Mu except within [] strings</span>
 <span class="Delimiter">:(code)</span>
 <span class="Normal">void</span> skip_whitespace_but_not_newline<span class="Delimiter">(</span>istream&amp; in<span class="Delimiter">)</span> <span class="Delimiter">{</span>
   <span class="Normal">while</span> <span class="Delimiter">(</span><span class="Constant">true</span><span class="Delimiter">)</span> <span class="Delimiter">{</span>