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:28 -0500 |
commit | c3fdf13a53cee3488c07f2c8fe796c21949bc66b (patch) | |
tree | f5d5caaf8e3ce3ffcaeda059eecff55b43e8361b | |
parent | 37bbe3d3acd62bad24493356a98579bd92c8f563 (diff) | |
download | postgresql-c3fdf13a53cee3488c07f2c8fe796c21949bc66b.tar.gz postgresql-c3fdf13a53cee3488c07f2c8fe796c21949bc66b.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 e406868db27..d8fe3b29bcf 100644 --- a/doc/src/sgml/ecpg.sgml +++ b/doc/src/sgml/ecpg.sgml @@ -8845,7 +8845,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> @@ -8871,7 +8871,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> |