@@ -1719,7 +1719,7 @@ postgresql://%2Fvar%2Flib%2Fpostgresql/dbname
17191719 There is no environment variable equivalent to this option, and no
17201720 facility for looking it up in <filename>.pgpass</filename>. It can be
17211721 used in a service file connection definition. Users with
1722- more sophisticated uses should consider usingopenssl engines and
1722+ more sophisticated uses should consider using<productname>OpenSSL</productname> engines and
17231723 tools like PKCS#11 or USB crypto offload devices.
17241724 </para>
17251725 </listitem>
@@ -5032,7 +5032,7 @@ int PQflush(PGconn *conn);
50325032 <para>
50335033 While the pipeline API was introduced in
50345034 <productname>PostgreSQL</productname> 14, it is a client-side feature
5035- which doesn't require special server support, and works on any server
5035+ which doesn't require special server support and works on any server
50365036 that supports the v3 extended query protocol.
50375037 </para>
50385038
@@ -5451,8 +5451,8 @@ int PQsendFlushRequest(PGconn *conn);
54515451 are being performed in rapid succession. There is usually less benefit
54525452 in using pipelined commands when each query takes many multiples of the client/server
54535453 round-trip time to execute. A 100-statement operation run on a server
5454- 300ms round-trip-time away would take 30 seconds in network latency alone
5455- without pipelining; with pipelining it may spend as little as 0.3s waiting for
5454+ 300 ms round-trip-time away would take 30 seconds in network latency alone
5455+ without pipelining; with pipelining it may spend as little as 0.3 s waiting for
54565456 results from the server.
54575457 </para>
54585458
@@ -7109,9 +7109,9 @@ defaultNoticeProcessor(void *arg, const char *message)
71097109 <para>
71107110 Each registered event handler is associated with two pieces of data,
71117111 known to <application>libpq</application> only as opaque <literal>void *</literal>
7112- pointers. There is a <firstterm>passthrough </firstterm> pointer that is provided
7112+ pointers. There is a <firstterm>pass-through </firstterm> pointer that is provided
71137113 by the application when the event handler is registered with a
7114- <structname>PGconn</structname>. Thepassthrough pointer never changes for the
7114+ <structname>PGconn</structname>. Thepass-through pointer never changes for the
71157115 life of the <structname>PGconn</structname> and all <structname>PGresult</structname>s
71167116 generated from it; so if used, it must point to long-lived data.
71177117 In addition there is an <firstterm>instance data</firstterm> pointer, which starts
@@ -7121,9 +7121,9 @@ defaultNoticeProcessor(void *arg, const char *message)
71217121 <xref linkend="libpq-PQsetInstanceData"/>,
71227122 <xref linkend="libpq-PQresultInstanceData"/> and
71237123 <function>PQsetResultInstanceData</function> functions. Note that
7124- unlike thepassthrough pointer, instance data of a <structname>PGconn</structname>
7124+ unlike thepass-through pointer, instance data of a <structname>PGconn</structname>
71257125 is not automatically inherited by <structname>PGresult</structname>s created from
7126- it. <application>libpq</application> does not know whatpassthrough
7126+ it. <application>libpq</application> does not know whatpass-through
71277127 and instance data pointers point to (if anything) and will never attempt
71287128 to free them — that is the responsibility of the event handler.
71297129 </para>