diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-06-06 08:56:50 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-06-06 08:56:50 -0700 |
commit | 8f97725d0088d86ae157006234d1d0009b1dbf4c (patch) | |
tree | 142c256c4ed0af0ea47f58bf6e2287e3c5749e3f | |
parent | 91fe63cdc15daa2ff15c0527bbf29abadb134ecc (diff) | |
download | mu-8f97725d0088d86ae157006234d1d0009b1dbf4c.tar.gz |
4252
-rw-r--r-- | 000organization.cc | 4 | ||||
-rw-r--r-- | 001help.cc | 2 | ||||
-rw-r--r-- | 002test.cc | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/000organization.cc b/000organization.cc index 357eb933..9a1938ff 100644 --- a/000organization.cc +++ b/000organization.cc @@ -94,7 +94,7 @@ // Types // End Types -// Function prototypes are auto-generated in the 'build' script; define your +// Function prototypes are auto-generated in the 'build*' scripts; define your // functions in any order. Just be sure to declare each function header all on // one line, ending with the '{'. Our auto-generation scripts are too minimal // and simple-minded to handle anything else. @@ -103,7 +103,7 @@ // Globals // // All statements in this section should always define a single variable on a -// single line. The 'build' script will simple-mindedly auto-generate extern +// single line. The 'build*' scripts will simple-mindedly auto-generate extern // declarations for them. Remember to define (not just declare) constants with // extern linkage in this section, since C++ global constants have internal // linkage by default. diff --git a/001help.cc b/001help.cc index 14c492a8..56aaac96 100644 --- a/001help.cc +++ b/001help.cc @@ -67,7 +67,7 @@ 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 'build' script contains a little command to automatically +//: way, our 'build*' scripts contain a little command to automatically //: generate declarations for them. :(code) bool is_equal(char* s, const char* lit) { diff --git a/002test.cc b/002test.cc index 33560a9d..b47731b5 100644 --- a/002test.cc +++ b/002test.cc @@ -13,7 +13,7 @@ typedef void (*test_fn)(void); :(before "Globals") // move a global ahead into types that we can't generate an extern declaration for const test_fn Tests[] = { - #include "test_list" // auto-generated; see 'build' script + #include "test_list" // auto-generated; see 'build*' scripts }; :(before "End Globals") |