]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Fix spelling
authorJoel Rosdahl <joel@rosdahl.net>
Sat, 13 Jun 2020 12:36:32 +0000 (14:36 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Sun, 14 Jun 2020 08:57:18 +0000 (10:57 +0200)
buildenv/debian-10-buster/Dockerfile
buildenv/debian-9-stretch/Dockerfile
buildenv/ubuntu-14-trusty/Dockerfile
buildenv/ubuntu-16-xenial/Dockerfile
buildenv/ubuntu-20-focal/Dockerfile
cmake/StandardWarnings.cmake
misc/format.sh
src/Util.hpp
src/compopt.cpp
unittest/test_argprocessing.cpp

index 0165662050d65f8ef20e33ee5524ed0d6a9bb483..3e49aa062e5f2955c4937928eb378f4e8674d82e 100644 (file)
@@ -1,6 +1,6 @@
 FROM debian:10
 
-# Seperate layer because this is required no matter what
+# Separate layer because this is required no matter what
 RUN apt-get update && apt-get install -y --no-install-recommends build-essential \
         && rm -rf /var/lib/apt/lists/*
 
index 495770f71265126d8cb9620985bf3f54f377827e..8b79f2980842e9d51f196069df72a9e4c48e249d 100644 (file)
@@ -1,6 +1,6 @@
 FROM debian:9
 
-# Seperate layer because this is required no matter what
+# Separate layer because this is required no matter what
 RUN apt-get update && apt-get install -y --no-install-recommends build-essential \
         && rm -rf /var/lib/apt/lists/*
 
index 7e7edf03c1116bd6912790ecec4de2e4320a255b..57711f9853bb033ef513788e1ed91f5071bc6f16 100644 (file)
@@ -1,6 +1,6 @@
 FROM ubuntu:trusty
 
-# Seperate layer because this is required no matter what
+# Separate layer because this is required no matter what
 RUN apt-get update && apt-get install -y --no-install-recommends build-essential \
         && rm -rf /var/lib/apt/lists/*
 
index a892c495ea2948d03289b714ba9b30d794e5a1af..3257b12505a7d88d6f44f33ad35e83b9239e0fd0 100644 (file)
@@ -1,6 +1,6 @@
 FROM ubuntu:xenial
 
-# Seperate layer because this is required no matter what
+# Separate layer because this is required no matter what
 RUN apt-get update && apt-get install -y --no-install-recommends build-essential \
         && rm -rf /var/lib/apt/lists/*
 
index 96383cc2f8f5d187161b77797bb50b0915f415a1..9b619e2f1f47db1a9a61470b9efc287738d40678 100644 (file)
@@ -1,6 +1,6 @@
 FROM ubuntu:focal
 
-# Seperate layer because this is required no matter what
+# Separate layer because this is required no matter what
 RUN apt-get update && apt-get install -y --no-install-recommends build-essential \
         && rm -rf /var/lib/apt/lists/*
 
index a2ac735fb527d1c58d8ce96e1d52a7cc3ad9982d..643164867712d0c39c469ee7d865328db8bd4f67 100644 (file)
@@ -67,7 +67,7 @@ set(CLANG_GCC_WARNINGS
     # * -Wnull-dereference
     # * -Wformat=2
 )
-# Tested seperatly as this is not supported by clang 3.4
+# Tested separately as this is not supported by clang 3.4
 add_target_compile_flag_if_supported(standard_warnings "-Wdouble-promotion")
 
 if(WARNINGS_AS_ERRORS)
@@ -126,7 +126,7 @@ elseif(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
     #
     # To be enabled in the future:
     #
-    # * -Wmisleading- indentation # warn if identation implies blocks where
+    # * -Wmisleading- indentation # warn if indentation implies blocks where
     #   blocks do not exist
     # * -Wduplicated-cond # warn if if / else chain has duplicated conditions
     # * -Wduplicated-branches # warn if if / else branches have duplicated code
index 30892bf5f45e0ccef38a1deafe8c6d60485bef8c..4e5861703b19097fb47752ef61d38c09bdf8a6bb 100755 (executable)
@@ -17,4 +17,4 @@ else
   echo "You can install it via pip3 install cmake-format"
 fi
 
-echo "Formating complete"
+echo "Formatting complete"
index 65b1ac71155e3244eaea4af24e8cf9a1fdd1e40d..59d528ca270df40e492ecd3c517e362bdf013397 100644 (file)
@@ -231,7 +231,7 @@ bool is_absolute_path(nonstd::string_view path);
 // Sets is_nfs to the result if fstatfs is available and no error occurred.
 //
 // Returns 0 if is_nfs was set, -1 if fstatfs is not available or errno if an
-// error occured.
+// error occurred.
 int is_nfs_fd(int fd, bool* is_nfs);
 
 // Return whether `ch` is a directory separator, i.e. '/' on POSIX systems and
index bf6ff16b41efd5afea12b13eaf168aeea94f35b1..f1b29aeff981b0a2b8c2262a1f8b8f55fc08768c 100644 (file)
@@ -40,7 +40,7 @@
 // run_second_cpp is false.
 #define AFFECTS_CPP (1 << 5)
 
-// The option only affects compilation; not passed to the preprocesor.
+// The option only affects compilation; not passed to the preprocessor.
 #define AFFECTS_COMP (1 << 6)
 
 struct compopt
index 7946ea0229002d969c3022b22b0e522d55e34e22..5c389ea85128357a3f9391ad8ffaa6b1aac30697 100644 (file)
@@ -653,7 +653,7 @@ TEST_CASE("debug_flag_order_with_known_option_last")
   CHECK(exp_cc == act_cc);
 }
 
-TEST_CASE("options_not_to_be_passed_to_the_preprocesor")
+TEST_CASE("options_not_to_be_passed_to_the_preprocessor")
 {
   TestContext test_context;