@@ -397,8 +397,8 @@ PGconn *PQconnectdbParams(const char **keywords, const char **values, int expand
397397 <row>
398398 <entry><literal>verify-ca</></entry>
399399 <entry>only try an <acronym>SSL</> connection, and verify that
400- the server certificate is issued by a trusted<acronym>CA</>
401- </entry>
400+ the server certificate is issued by a trustedcertificate
401+ authority (<acronym>CA</>) </entry>
402402 </row>
403403
404404 <row>
@@ -791,8 +791,8 @@ PostgresPollingStatusType PQconnectPoll(PGconn *conn);
791791
792792 <para>
793793 At any time during connection, the status of the connection can be
794- checked by calling <function>PQstatus</>. If thisgives <symbol>CONNECTION_BAD</>, then the
795- connection procedure has failed; ifit gives <function>CONNECTION_OK</>, then the
794+ checked by calling <function>PQstatus</>. If thiscall returns <symbol>CONNECTION_BAD</>, then the
795+ connection procedure has failed; ifthe call returns <function>CONNECTION_OK</>, then the
796796 connection is ready. Both of these states are equally detectable
797797 from the return value of <function>PQconnectPoll</>, described above. Other states might also occur
798798 during (and only during) an asynchronous connection procedure. These
@@ -956,7 +956,7 @@ PQconninfoOption *PQconninfoParse(const char *conninfo, char **errmsg);
956956 <para>
957957 Parses a connection string and returns the resulting options as an
958958 array; or returns <symbol>NULL</> if there is a problem with the connection
959- string. This can be used todetermine
959+ string. Thisfunction can be used toextract
960960 the <function>PQconnectdb</function> options in the provided
961961 connection string. The return value points to an array of
962962 <structname>PQconninfoOption</structname> structures, which ends
@@ -1486,9 +1486,10 @@ const char *PQparameterStatus(const PGconn *conn, const char *paramName);
14861486<synopsis>
14871487int PQprotocolVersion(const PGconn *conn);
14881488</synopsis>
1489- Applications might wish to use this to determine whether certain
1489+ Applications might wish to use thisfunction to determine whether certain
14901490 features are supported. Currently, the possible values are 2 (2.0
1491- protocol), 3 (3.0 protocol), or zero (connection bad). This will
1491+ protocol), 3 (3.0 protocol), or zero (connection bad). The
1492+ protocol version will
14921493 not change after connection startup is complete, but it could
14931494 theoretically change during a connection reset. The 3.0 protocol
14941495 will normally be used when communicating with
@@ -1513,7 +1514,7 @@ int PQprotocolVersion(const PGconn *conn);
15131514<synopsis>
15141515int PQserverVersion(const PGconn *conn);
15151516</synopsis>
1516- Applications might use this to determine the version of the database
1517+ Applications might use thisfunction to determine the version of the database
15171518 server they are connected to. The number is formed by converting
15181519 the major, minor, and revision numbers into two-decimal-digit
15191520 numbers and appending them together. For example, version 8.1.5
@@ -1547,7 +1548,7 @@ char *PQerrorMessage(const PGconn *conn);
15471548 Nearly all <application>libpq</> functions will set a message for
15481549 <function>PQerrorMessage</function> if they fail. Note that by
15491550 <application>libpq</application> convention, a nonempty
1550- <function>PQerrorMessage</function> result canbe multiple lines,
1551+ <function>PQerrorMessage</function> result canconsist of multiple lines,
15511552 and will include a trailing newline. The caller should not free
15521553 the result directly. It will be freed when the associated
15531554 <structname>PGconn</> handle is passed to
@@ -1717,8 +1718,8 @@ PGresult *PQexec(PGconn *conn, const char *command);
17171718 </varlistentry>
17181719 </variablelist>
17191720
1720- It is allowed to include multiple SQL commands (separated by semicolons)
1721- in the command string . Multiple queries sent in a single
1721+ The command string can include multiple SQL commands
1722+ (separated by semicolons) . Multiple queries sent in a single
17221723 <function>PQexec</> call are processed in a single transaction, unless
17231724 there are explicit <command>BEGIN</command>/<command>COMMIT</command>
17241725 commands included in the query string to divide it into multiple
@@ -4142,7 +4143,7 @@ int PQcancel(PGcancel *cancel, char *errbuf, int errbufsize);
41424143 <para>
41434144 The return value is 1 if the cancel request was successfully
41444145 dispatched and 0 if not. If not, <parameter>errbuf</> is filled
4145- with an error message explaining why not . <parameter>errbuf</>
4146+ with anexplanatory error message. <parameter>errbuf</>
41464147 must be a char array of size <parameter>errbufsize</> (the
41474148 recommended size is 256 bytes).
41484149 </para>