Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
doc: Add missing parentheses
authorPeter Eisentraut <peter_e@gmx.net>
Sat, 16 Apr 2016 00:44:10 +0000 (20:44 -0400)
committerPeter Eisentraut <peter_e@gmx.net>
Sat, 16 Apr 2016 00:54:23 +0000 (20:54 -0400)
From: Alexander Law <exclusion@gmail.com>

doc/src/sgml/ecpg.sgml

index 3ce5f66f4eac05ed1219a59b0e95451cf70804b9..c1469cba4a760aa8f584b2fd74a53cfbef933e13 100644 (file)
@@ -8557,7 +8557,7 @@ int dectolong(decimal *np, long *lngp);
 int rdatestr(date d, char *str);
 </synopsis>
         The function receives two arguments, the first one is the date to
-        convert (<literal>d</> and the second one is a pointer to the target
+        convert (<literal>d</>) and the second one is a pointer to the target
         string. The output format is always <literal>yyyy-mm-dd</>, so you need
         to allocate at least 11 bytes (including the zero-byte terminator) for the
         string.
@@ -8910,7 +8910,7 @@ int dttoasc(timestamp *ts, char *output);
 </synopsis>
         The function receives a pointer to the timestamp variable to convert
         (<literal>ts</>) and the string that should hold the result of the
-        operation <literal>output</>). It converts <literal>ts</> to its
+        operation (<literal>output</>). It converts <literal>ts</> to its
         textual representation according to the SQL standard, which is
         be <literal>YYYY-MM-DD HH:MM:SS</literal>.
        </para>
@@ -8957,7 +8957,7 @@ int intoasc(interval *i, char *str);
 </synopsis>
         The function receives a pointer to the interval variable to convert
         (<literal>i</>) and the string that should hold the result of the
-        operation <literal>str</>). It converts <literal>i</> to its
+        operation (<literal>str</>). It converts <literal>i</> to its
         textual representation according to the SQL standard, which is
         be <literal>YYYY-MM-DD HH:MM:SS</literal>.
        </para>