summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/MANUAL.adoc2
-rw-r--r--unittest/test_argprocessing.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/MANUAL.adoc b/doc/MANUAL.adoc
index bfbe650a..e22685ec 100644
--- a/doc/MANUAL.adoc
+++ b/doc/MANUAL.adoc
@@ -778,7 +778,7 @@ might be incorrect.
If true, ccache will cache source file hashes based on device, inode and
timestamps. This reduces the time spent on hashing include files since the
- result can be resused between compilations. The default is true. The feature
+ result can be reused between compilations. The default is true. The feature
requires <<config_temporary_dir,*temporary_dir*>> to be located on a local
filesystem of a supported type.
+
diff --git a/unittest/test_argprocessing.cpp b/unittest/test_argprocessing.cpp
index fe78f12b..be070d8f 100644
--- a/unittest/test_argprocessing.cpp
+++ b/unittest/test_argprocessing.cpp
@@ -664,7 +664,7 @@ TEST_CASE("-x")
SUBCASE("UNKNOWN -x option (uppercase)")
{
- ctx.orig_args = Args::from_string("gcc -x UNSUPPORTED_LANGUGAGE -c foo.c");
+ ctx.orig_args = Args::from_string("gcc -x UNSUPPORTED_LANGUAGE -c foo.c");
const ProcessArgsResult result = process_args(ctx);
CHECK(result.error == Statistic::unsupported_source_language);
CHECK(ctx.args_info.actual_language == "");