about summary refs log tree commit diff stats
path: root/001help.cc
diff options
context:
space:
mode:
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;