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:09 -0500 |
commit | 57b28c08305a7696375eae9a0a26532f8fb84d1b (patch) | |
tree | 6a86a13ce240be336f49964211a5c86e93ee244a /doc/src | |
parent | 28e858c0f951a5f86f43ba9b8922c64bba96d2e1 (diff) | |
download | postgresql-57b28c08305a7696375eae9a0a26532f8fb84d1b.tar.gz postgresql-57b28c08305a7696375eae9a0a26532f8fb84d1b.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
Diffstat (limited to 'doc/src')
-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 dd576c275e8..ab58729e6ec 100644 --- a/doc/src/sgml/ecpg.sgml +++ b/doc/src/sgml/ecpg.sgml @@ -8884,7 +8884,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> @@ -8910,7 +8910,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> |