aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2018-01-19 03:03:20 -0500
committerAndrew Kelley <superjoe30@gmail.com>2018-01-19 03:21:47 -0500
commitea623f2d397941daad20eec7114cac01a5f86d24 (patch)
tree5e567db20d2ebbcf617f22d2107c58c5b8ede811 /src/main.cpp
parent4b64c777ee465abb1f4a6bf2d31ba39805d5fa54 (diff)
downloadzig-ea623f2d397941daad20eec7114cac01a5f86d24.tar.gz
zig-ea623f2d397941daad20eec7114cac01a5f86d24.zip
all doc code examples are now tested
improve color scheme of docs make docs depend on no external files fix broken example code in docs closes #465
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index c416819842..e3ef62be07 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -462,7 +462,7 @@ int main(int argc, char **argv) {
Termination term;
os_spawn_process(buf_ptr(path_to_build_exe), args, &term);
if (term.how != TerminationIdClean || term.code != 0) {
- fprintf(stderr, "\nBuild failed. Use the following command to reproduce the failure:\n");
+ fprintf(stderr, "\nBuild failed. The following command failed:\n");
fprintf(stderr, "%s", buf_ptr(path_to_build_exe));
for (size_t i = 0; i < args.length; i += 1) {
fprintf(stderr, " %s", args.at(i));