about summary refs log tree commit diff stats
path: root/html/020run.cc.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/020run.cc.html')
-rw-r--r--html/020run.cc.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/html/020run.cc.html b/html/020run.cc.html
index bc31010d..cb39df0e 100644
--- a/html/020run.cc.html
+++ b/html/020run.cc.html
@@ -39,11 +39,11 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color
 <pre id='vimCodeElement'>
 <span class="Comment">//: Phase 3: Start running a loaded and transformed recipe.</span>
 <span class="Comment">//:</span>
-<span class="Comment">//:   The process of running mu code:</span>
+<span class="Comment">//:   The process of running Mu code:</span>
 <span class="Comment">//:     load -&gt; transform -&gt; run</span>
 <span class="Comment">//:</span>
 <span class="Comment">//: So far we've seen recipes as lists of instructions, and instructions point</span>
-<span class="Comment">//: at other recipes. To kick things off mu needs to know how to run certain</span>
+<span class="Comment">//: at other recipes. To kick things off Mu needs to know how to run certain</span>
 <span class="Comment">//: 'primitive' recipes. That will then give the ability to run recipes</span>
 <span class="Comment">//: containing these primitives.</span>
 <span class="Comment">//:</span>
@@ -184,7 +184,7 @@ map&lt;string<span class="Delimiter">,</span> <span class="Normal">int</span>&gt
 
 <span class="Comment">//: Step 1: load all .mu files with numeric prefixes (in order)</span>
 <span class="Delimiter">:(before &quot;End Load Recipes&quot;)</span>
-<span class="Comment">// Load .mu Core</span>
+<span class="Comment">// Load Mu Prelude</span>
 <span class="CommentedCode">//? Save_trace = true;</span>
 <span class="CommentedCode">//? START_TRACING_UNTIL_END_OF_SCOPE;</span>
 load_file_or_directory<span class="Delimiter">(</span><span class="Constant">&quot;core.mu&quot;</span><span class="Delimiter">);</span>
@@ -429,7 +429,7 @@ vector&lt;<span class="Normal">double</span>&gt; read_memory<span class="Delimit
 ]
 <span class="traceAbsent">-mem: storing 34 in location 0</span>
 
-<span class="Comment">//: mu is robust to various combinations of commas and spaces. You just have</span>
+<span class="Comment">//: Mu is robust to various combinations of commas and spaces. You just have</span>
 <span class="Comment">//: to put spaces around the '&lt;-'.</span>
 
 <span class="Delimiter">:(scenario comma_without_space)</span>