]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
doc: Language review
authorPeter Eisentraut <peter@eisentraut.org>
Sun, 7 Jun 2020 11:27:57 +0000 (13:27 +0200)
committerPeter Eisentraut <peter@eisentraut.org>
Sun, 7 Jun 2020 11:27:57 +0000 (13:27 +0200)
doc/src/sgml/libpq.sgml

index 52631f458ffe78d48285e01507cc6c9ef22937b1..19e197914443d2ddb538677acbe075e479f443b5 100644 (file)
@@ -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