summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDavid Smith <smithdc@gmail.com>2025-05-31 10:08:13 +0100
committernessita <124304+nessita@users.noreply.github.com>2025-08-25 10:51:10 -0300
commit724e5ec6f2c89cacbd7c28e0e3ee63d292810cbd (patch)
treebbb864a899b5b3c3a4fb29bcd09e590eab9876fb /docs
parent6f8e23d1c10c7ce32cea82b65ad2af640015f147 (diff)
Refs #36485 -- Fixed dangling hyphen and unbalanced inline markup in docs.
Diffstat (limited to 'docs')
-rw-r--r--docs/internals/contributing/writing-documentation.txt2
-rw-r--r--docs/topics/cache.txt4
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/internals/contributing/writing-documentation.txt b/docs/internals/contributing/writing-documentation.txt
index 1258d4686f..2654cce06e 100644
--- a/docs/internals/contributing/writing-documentation.txt
+++ b/docs/internals/contributing/writing-documentation.txt
@@ -191,7 +191,7 @@ If you encounter false-positives (error output that actually is correct), do
one of the following:
* Surround inline code or brand/technology names with double grave accents
- (``).
+ (\`\`)
* Find synonyms that the spell checker recognizes.
* If, and only if, you are sure the word you are using is correct - add it
to ``docs/spelling_wordlist`` (please keep the list in alphabetical order).
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt
index dbfa2c8c1e..9cb1ddda23 100644
--- a/docs/topics/cache.txt
+++ b/docs/topics/cache.txt
@@ -10,8 +10,8 @@ processing-overhead perspective, than your standard
read-a-file-off-the-filesystem server arrangement.
For most web applications, this overhead isn't a big deal. Most web
-applications aren't ``washingtonpost.com`` or ``slashdot.org``; they're small-
-to medium-sized sites with so-so traffic. But for medium- to high-traffic
+applications aren't ``washingtonpost.com`` or ``slashdot.org``; they're
+small-to medium-sized sites with so-so traffic. But for medium- to high-traffic
sites, it's essential to cut as much overhead as possible.
That's where caching comes in.