diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2024-02-25 15:29:09 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2024-02-25 15:29:34 -0500 |
commit | 2b997d7db26e4c2be6b2474eeca801a50825f18c (patch) | |
tree | cd212144a5739060e84fcc8443757316bb1360a3 | |
parent | cbeb455275138e6525912dd480c421864994c9c1 (diff) | |
download | postgresql-2b997d7db26e4c2be6b2474eeca801a50825f18c.tar.gz postgresql-2b997d7db26e4c2be6b2474eeca801a50825f18c.zip |
Doc: fix minor typos in two ECPG function descriptions.
Noted by Aidar Imamov.
Discussion: https://postgr.es/m/170869935022.643.3709087848818148291@wrigleys.postgresql.org
-rw-r--r-- | doc/src/sgml/ecpg.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ecpg.sgml b/doc/src/sgml/ecpg.sgml index 46187a563be..04c91508188 100644 --- a/doc/src/sgml/ecpg.sgml +++ b/doc/src/sgml/ecpg.sgml @@ -8847,7 +8847,7 @@ int dectodbl(decimal *np, double *dblp); <term><function>dectoint</function></term> <listitem> <para> - Convert a variable to type decimal to an integer. + Convert a variable of type decimal to an integer. <synopsis> int dectoint(decimal *np, int *ip); </synopsis> @@ -8873,7 +8873,7 @@ int dectoint(decimal *np, int *ip); <term><function>dectolong</function></term> <listitem> <para> - Convert a variable to type decimal to a long integer. + Convert a variable of type decimal to a long integer. <synopsis> int dectolong(decimal *np, long *lngp); </synopsis> |