summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Rosdahl <joel@rosdahl.net>2023-02-16 07:40:58 +0100
committerJoel Rosdahl <joel@rosdahl.net>2023-02-16 07:40:58 +0100
commit86bfec0d10ac8967fd8a2703837f9f6e25d51bc3 (patch)
tree73e2be6f8d1b1046f36370329609d84600c0f03d
parent1853902f75567089a5ef46511573c7f352c6c232 (diff)
downloadccache-86bfec0d10ac8967fd8a2703837f9f6e25d51bc3.tar.gz
chore: Fix typos
-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 == "");