diff options
| author | Tom Lane | 2024-02-25 20:29:09 +0000 |
|---|---|---|
| committer | Tom Lane | 2024-02-25 20:29:43 +0000 |
| commit | 10f30873ddaf6984ebf5a87305fab0f4ae8f70c2 (patch) | |
| tree | 6c764c627d2e86a44fd9facc44ca13d684a1d4de | |
| parent | cf807eba5dc4ea16721fa8562e38a41936ed600f (diff) | |
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 7f2e6c4bed7..a7c32613658 100644 --- a/doc/src/sgml/ecpg.sgml +++ b/doc/src/sgml/ecpg.sgml @@ -8614,7 +8614,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> @@ -8640,7 +8640,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> |
