]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Fix source comment and documentation typos (#403)
authorluzpaz <luzpaz@users.noreply.github.com>
Wed, 1 May 2019 19:10:24 +0000 (15:10 -0400)
committerJoel Rosdahl <joel@rosdahl.net>
Wed, 1 May 2019 19:10:24 +0000 (21:10 +0200)
Found via `codespell -q 3 -L uint,thru -S ./src/zlib`

doc/DEVELOPER.md
doc/NEWS.adoc
src/conf.c

index 1a210acb1cda449c1d2ae6841eb07e939fac345c..7401cc65601002565581792e21c8a847ee688e38 100644 (file)
@@ -21,7 +21,7 @@ script:
     misc/combine-trace-files *.o.ccache-trace | gzip > ccache.trace.gz
 
 (The gzip step is optional; Chrome supports both plain trace files and gzipped
-trace files.) The script will offset each invididual trace by its start time in
+trace files.) The script will offset each individual trace by its start time in
 the combined file.
 
 There is also a script called `summarize-trace-files` that generates a summary
index 10b9dd7e0aa411c91931533dc0b37cc96544555a..1859c0eb9aeed950efa9e6af12eaca26d66c26a6 100644 (file)
@@ -34,7 +34,7 @@ Changes
 
 - Compilations with /dev/null as the input file are now cached.
 
-- ccache has learned how to contruct the object filename if no `-o` option is
+- ccache has learned how to construct the object filename if no `-o` option is
   given and the source filename does not include a `.` or ends with a `.`.
 
 - Fixed a temporary file leak when the depend mode is enabled and the compiler
index 0e76863a03de5bb47b1f275c492f22372e35db44..30aa4a40fcb161bf642a56bc1a9b8f43f024ad1a 100644 (file)
@@ -192,7 +192,7 @@ conf_free(struct conf *conf)
 
 // Note: The path pointer is stored in conf, so path must outlive conf.
 //
-// On failure, if an I/O error occured errno is set appropriately, otherwise
+// On failure, if an I/O error occurred errno is set appropriately, otherwise
 // errno is set to zero indicating that config itself was invalid.
 bool
 conf_read(struct conf *conf, const char *path, char **errmsg)