about summary refs log tree commit diff stats
path: root/001help.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-10-22 16:22:17 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-10-22 16:22:17 -0700
commit6a9d8191dfb5606f8d3630375f3ec045bd534ba3 (patch)
treea391cbcf7f193f7a5b3f2e9822829f21e5f80cf6 /001help.cc
parentb9dcb70b338287a764ddcbbb834094853e94a9b6 (diff)
downloadmu-6a9d8191dfb5606f8d3630375f3ec045bd534ba3.tar.gz
3557
Diffstat (limited to '001help.cc')
-rw-r--r--001help.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/001help.cc b/001help.cc
index 0f60bf09..03c21d4c 100644
--- a/001help.cc
+++ b/001help.cc
@@ -58,8 +58,8 @@ while (argc > 1 && starts_with(*arg, "--")) {
 //: anywhere we like as long as we format the function header in a specific
 //: way: put it all on a single line without indent, end the line with ') {'
 //: and no trailing whitespace. As long as functions uniformly start this
-//: way, our makefile contains a little command to automatically generate
-//: declarations for them.
+//: way, our 'build' script contains a little command to automatically
+//: generate declarations for them.
 :(code)
 bool is_equal(char* s, const char* lit) {
   return strncmp(s, lit, strlen(lit)) == 0;