summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Naylor2022-02-15 07:30:57 +0000
committerJohn Naylor2022-02-15 07:30:57 +0000
commita59135a81aa781d126c48a516179e43dbb0d428a (patch)
tree0584e93e4efc1f604927ab11bbd3dca40c415ba7
parent13d129333ee2cc936350cd257af4d0367a6099ac (diff)
Spell "startup process" with lower case in the documentation
Most uses were already lower case, so this just makes all user-visible spellings consistent. Bharath Rupireddy The proposed patch also had analagous changes for the code comments, but I decided that wasn't worth the churn. Discussion: https://www.postgresql.org/message-id/flat/CALj2ACW7%2Bv_0QBPoWB%3DqKr67JKC019Htm%3DX8sKewS17bOquefg%40mail.gmail.com
-rw-r--r--doc/src/sgml/high-availability.sgml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/high-availability.sgml b/doc/src/sgml/high-availability.sgml
index 437712762a..b5b6042104 100644
--- a/doc/src/sgml/high-availability.sgml
+++ b/doc/src/sgml/high-availability.sgml
@@ -2127,7 +2127,7 @@ HINT: You can then restart the server after making the necessary configuration
<para>
<function>pg_cancel_backend()</function>
and <function>pg_terminate_backend()</function> will work on user backends,
- but not the Startup process, which performs
+ but not the startup process, which performs
recovery. <structname>pg_stat_activity</structname> does not show
recovering transactions as active. As a result,
<structname>pg_prepared_xacts</structname> is always empty during
@@ -2139,9 +2139,9 @@ HINT: You can then restart the server after making the necessary configuration
<para>
<structname>pg_locks</structname> will show locks held by backends,
as normal. <structname>pg_locks</structname> also shows
- a virtual transaction managed by the Startup process that owns all
+ a virtual transaction managed by the startup process that owns all
<literal>AccessExclusiveLocks</literal> held by transactions being replayed by recovery.
- Note that the Startup process does not acquire locks to
+ Note that the startup process does not acquire locks to
make database changes, and thus locks other than <literal>AccessExclusiveLocks</literal>
do not show in <structname>pg_locks</structname> for the Startup
process; they are just presumed to exist.