]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
docs: Tweak Asciidoc markup
authorJoel Rosdahl <joel@rosdahl.net>
Sun, 19 Oct 2025 08:08:45 +0000 (10:08 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Wed, 22 Oct 2025 19:24:39 +0000 (21:24 +0200)
doc/manual.adoc

index d53566bdebe9893bd829c5ca9dd5d73b1c52ee41..30c4c971a259e179f394cbd68a489c6db2c6ea1e 100644 (file)
@@ -1154,11 +1154,11 @@ filesystem as the `CCACHE_DIR` path, but this requirement has been relaxed.
 
 === Disabling ccache
 
-To disable ccache completely for all invocations, set <<config_disable,*disable
-= true*>> (`CCACHE_DISABLE=1`). You can also disable ccache for a certain source
-code file by adding the string `ccache:disable` in a comment in the first 4096
-bytes of the file. In the latter case the `Ccache disabled` statistics counter
-will be increased.
+To disable ccache completely for all invocations, set
+<<config_disable,*disable = true*>> (`CCACHE_DISABLE=1`). You can also disable
+ccache for a certain source code file by adding the string `ccache:disable` in a
+comment in the first 4096 bytes of the file. In the latter case the `Ccache
+disabled` statistics counter will be increased.
 
 
 == Remote storage backends
@@ -1578,16 +1578,16 @@ integrity, cached data is protected with XXH3 checksums to detect corruption.
 Ccache has two strategies for gathering the information used to create cache
 lookup keys:
 
-* **Preprocessor mode**: Ccache runs the preprocessor on the source code and
+* *Preprocessor mode*: Ccache runs the preprocessor on the source code and
   hashes the result.
-* **Direct mode**: Ccache hashes the source code and include files directly.
+* *Direct mode*: Ccache hashes the source code and include files directly.
 
 Direct mode is generally faster because it avoids the overhead of running the
 preprocessor.
 
 When direct mode doesn't find a cached result (cache miss), ccache falls back to
-preprocessor mode unless **depend mode** is enabled. In depend mode, ccache
-never runs the preprocessor, even on cache misses. See _<<The depend mode>>_ for
+preprocessor mode unless *depend mode* is enabled. In depend mode, ccache never
+runs the preprocessor, even on cache misses. See _<<The depend mode>>_ for
 details.