aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2023-10-03 14:13:53 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2023-10-03 14:13:53 -0400
commit77d0ad6c46c518234b9ce0a5be1f61a25f1bf753 (patch)
treeb230995e83d0483765d863cb2d3af27ce208f9fe /doc/src
parent5e4282772a569363da350548b2ce2e214e92ba40 (diff)
downloadpostgresql-77d0ad6c46c518234b9ce0a5be1f61a25f1bf753.tar.gz
postgresql-77d0ad6c46c518234b9ce0a5be1f61a25f1bf753.zip
Doc: suppress "exceed the available area" warning in PDF build.
Allow a line break in example output, as we have done elsewhere. Overlength output was added in commit 1e68e43d3. While here, adjust some shaky grammar in an adjacent note (from a different commit, c9af05465). Per buildfarm.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/monitoring.sgml10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml
index 9c4930e9ae5..1149093a8a6 100644
--- a/doc/src/sgml/monitoring.sgml
+++ b/doc/src/sgml/monitoring.sgml
@@ -1120,7 +1120,7 @@ SELECT a.pid, a.wait_event, w.description
pg_wait_events w ON (a.wait_event_type = w.type AND
a.wait_event = w.name)
WHERE wait_event is NOT NULL and a.state = 'active';
--[ RECORD 1 ]------------------------------------------------------------------
+-[ RECORD 1 ]------------------------------------------------------&zwsp;------------
pid | 686674
wait_event | WALInitSync
description | Waiting for a newly initialized WAL file to reach durable storage
@@ -1130,11 +1130,11 @@ description | Waiting for a newly initialized WAL file to reach durable storage
<note>
<para>
Extensions can add <literal>Extension</literal> and
- <literal>LWLock</literal> types
- to the list shown in <xref linkend="wait-event-extension-table"/> and
+ <literal>LWLock</literal> events
+ to the lists shown in <xref linkend="wait-event-extension-table"/> and
<xref linkend="wait-event-lwlock-table"/>. In some cases, the name
- of <literal>LWLock</literal> assigned by an extension will not be
- available in all server processes; It might be reported as just
+ of an <literal>LWLock</literal> assigned by an extension will not be
+ available in all server processes. It might be reported as just
<quote><literal>extension</literal></quote> rather than the
extension-assigned name.
</para>