Skip to content

Commit 9b2dc08

Browse files
committed
doc: Add missing parentheses
From: Alexander Law <exclusion@gmail.com>
1 parent f4f4f69 commit 9b2dc08

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/src/sgml/ecpg.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8557,7 +8557,7 @@ int dectolong(decimal *np, long *lngp);
85578557
int rdatestr(date d, char *str);
85588558
</synopsis>
85598559
The function receives two arguments, the first one is the date to
8560-
convert (<literal>d</> and the second one is a pointer to the target
8560+
convert (<literal>d</>) and the second one is a pointer to the target
85618561
string. The output format is always <literal>yyyy-mm-dd</>, so you need
85628562
to allocate at least 11 bytes (including the zero-byte terminator) for the
85638563
string.
@@ -8910,7 +8910,7 @@ int dttoasc(timestamp *ts, char *output);
89108910
</synopsis>
89118911
The function receives a pointer to the timestamp variable to convert
89128912
(<literal>ts</>) and the string that should hold the result of the
8913-
operation <literal>output</>). It converts <literal>ts</> to its
8913+
operation (<literal>output</>). It converts <literal>ts</> to its
89148914
textual representation according to the SQL standard, which is
89158915
be <literal>YYYY-MM-DD HH:MM:SS</literal>.
89168916
</para>
@@ -8957,7 +8957,7 @@ int intoasc(interval *i, char *str);
89578957
</synopsis>
89588958
The function receives a pointer to the interval variable to convert
89598959
(<literal>i</>) and the string that should hold the result of the
8960-
operation <literal>str</>). It converts <literal>i</> to its
8960+
operation (<literal>str</>). It converts <literal>i</> to its
89618961
textual representation according to the SQL standard, which is
89628962
be <literal>YYYY-MM-DD HH:MM:SS</literal>.
89638963
</para>

0 commit comments

Comments
 (0)