diff options
author | Evan Martin <martine@danga.com> | 2012-10-03 20:05:26 (GMT) |
---|---|---|
committer | Evan Martin <martine@danga.com> | 2012-10-03 20:05:26 (GMT) |
commit | 44f2cb66a72f1061b400bcd45a085eb7a0ec8846 (patch) | |
tree | 19be2c2ffabefec3c1e49ff3cac1e3b19e7d11a5 | |
parent | 8bd8d170e9816bb602d3efbb1d90844762b5ad12 (diff) | |
parent | 39aac336925aa1e4452df9215545ba1b2326cd0c (diff) | |
download | Ninja-44f2cb66a72f1061b400bcd45a085eb7a0ec8846.zip Ninja-44f2cb66a72f1061b400bcd45a085eb7a0ec8846.tar.gz Ninja-44f2cb66a72f1061b400bcd45a085eb7a0ec8846.tar.bz2 |
Merge pull request #437 from mo/master
[PATCH] Fixed two spelling errors in ninja
-rwxr-xr-x | configure.py | 2 | ||||
-rw-r--r-- | src/build_test.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.py b/configure.py index f8e82f0..cb0d45e 100755 --- a/configure.py +++ b/configure.py @@ -364,7 +364,7 @@ n.newline() all_targets += ninja_test -n.comment('Ancilliary executables.') +n.comment('Ancillary executables.') objs = cxx('parser_perftest') all_targets += n.build(binary('parser_perftest'), 'link', objs, implicit=ninja_lib, variables=[('libs', libs)]) diff --git a/src/build_test.cc b/src/build_test.cc index 859e758..c208463 100644 --- a/src/build_test.cc +++ b/src/build_test.cc @@ -943,7 +943,7 @@ TEST_F(BuildDryRun, AllCommandsShown) { } // Test that RSP files are created when & where appropriate and deleted after -// succesful execution. +// successful execution. TEST_F(BuildTest, RspFileSuccess) { ASSERT_NO_FATAL_FAILURE(AssertParse(&state_, |