about summary refs log tree commit diff stats
path: root/html/001help.cc.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-10-22 16:27:36 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-10-22 16:27:36 -0700
commitc02478c4010d54acfaed0318a2c2c689b468e92e (patch)
tree8cdc5a15f685e4ef27205a59306f5781a10b3899 /html/001help.cc.html
parent6a9d8191dfb5606f8d3630375f3ec045bd534ba3 (diff)
downloadmu-c02478c4010d54acfaed0318a2c2c689b468e92e.tar.gz
3558
Diffstat (limited to 'html/001help.cc.html')
-rw-r--r--html/001help.cc.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/001help.cc.html b/html/001help.cc.html
index 087ae91a..dd6f7d74 100644
--- a/html/001help.cc.html
+++ b/html/001help.cc.html
@@ -93,8 +93,8 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color
 <span class="Comment">//: anywhere we like as long as we format the function header in a specific</span>
 <span class="Comment">//: way: put it all on a single line without indent, end the line with ') {'</span>
 <span class="Comment">//: and no trailing whitespace. As long as functions uniformly start this</span>
-<span class="Comment">//: way, our makefile contains a little command to automatically generate</span>
-<span class="Comment">//: declarations for them.</span>
+<span class="Comment">//: way, our 'build' script contains a little command to automatically</span>
+<span class="Comment">//: generate declarations for them.</span>
 <span class="Delimiter">:(code)</span>
 <span class="Normal">bool</span> is_equal<span class="Delimiter">(</span><span class="Normal">char</span>* s<span class="Delimiter">,</span> <span class="Normal">const</span> <span class="Normal">char</span>* lit<span class="Delimiter">)</span> <span class="Delimiter">{</span>
   <span class="Identifier">return</span> strncmp<span class="Delimiter">(</span>s<span class="Delimiter">,</span> lit<span class="Delimiter">,</span> strlen<span class="Delimiter">(</span>lit<span class="Delimiter">))</span> == <span class="Constant">0</span><span class="Delimiter">;</span>