]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
chore: Fix typos
authorJoel Rosdahl <joel@rosdahl.net>
Thu, 16 Feb 2023 06:40:58 +0000 (07:40 +0100)
committerJoel Rosdahl <joel@rosdahl.net>
Thu, 16 Feb 2023 06:40:58 +0000 (07:40 +0100)
doc/MANUAL.adoc
unittest/test_argprocessing.cpp

index bfbe650a5ef0bb1b91224c5d29b49301f64b31fa..e22685ecee81dcd10d1fd933f41762d848fdb592 100644 (file)
@@ -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.
 +
index fe78f12bfe44c8d1a6c87e2923bb1807fda5a28e..be070d8f05b968cf2e68196ea50de78e33cbd489 100644 (file)
@@ -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 == "");