aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2020-06-07 13:27:57 +0200
committerPeter Eisentraut <peter@eisentraut.org>2020-06-07 13:27:57 +0200
commit4c6f70cd33ac395dea1acca7dabf4cb8556235e7 (patch)
tree871c27dc582a0275482d269ebb140ef928e1de9b
parentb79cb8a919c2614c81ae7578b863b7f582a9baf2 (diff)
downloadpostgresql-4c6f70cd33ac395dea1acca7dabf4cb8556235e7.tar.gz
postgresql-4c6f70cd33ac395dea1acca7dabf4cb8556235e7.zip
doc: Language review
-rw-r--r--doc/src/sgml/libpq.sgml10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml
index 52631f458ff..19e19791444 100644
--- a/doc/src/sgml/libpq.sgml
+++ b/doc/src/sgml/libpq.sgml
@@ -925,11 +925,11 @@ postgresql:///mydb?host=localhost&amp;port=5433
</para>
<para>
- Connection <acronym>URI</acronym> needs to be encoded with
- <ulink url="https://tools.ietf.org/html/rfc3986#section-2.1">Percent-encoding</ulink>
- if it includes symbols with special meaning in any of its parts.
- Here is an example where equal sign (<literal>=</literal>) is replaced
- with <literal>%3D</literal> and whitespace character with
+ The connection <acronym>URI</acronym> needs to be encoded with <ulink
+ url="https://tools.ietf.org/html/rfc3986#section-2.1">percent-encoding</ulink>
+ if it includes symbols with special meaning in any of its parts. Here is
+ an example where the equal sign (<literal>=</literal>) is replaced with
+ <literal>%3D</literal> and the space character with
<literal>%20</literal>:
<programlisting>
postgresql://user@localhost:5433/mydb?options=-c%20synchronous_commit%3Doff