diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2020-06-16 16:41:11 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2020-06-16 16:41:32 -0400 |
commit | 44a6a82c791df00c2db7c64f26a63e64ae94bd46 (patch) | |
tree | 221de1b974d2d0cee4e7e5dced26e05d5fa099db /doc/src | |
parent | 95647a1c7d291043374332f72388543846e370a7 (diff) |
Doc: fix copy-and-pasteo in ecpg docs.
The synopsis for PGTYPESinterval_free() used the wrong name.
Discussion: https://postgr.es/m/159231203030.679.3061023914894071953@wrigleys.postgresql.org
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ecpg.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ecpg.sgml b/doc/src/sgml/ecpg.sgml index 18a7a86e2c8..a11ad8f06c5 100644 --- a/doc/src/sgml/ecpg.sgml +++ b/doc/src/sgml/ecpg.sgml @@ -3342,7 +3342,7 @@ interval *PGTYPESinterval_new(void); <para> Release the memory of a previously allocated interval variable. <synopsis> -void PGTYPESinterval_new(interval *intvl); +void PGTYPESinterval_free(interval *intvl); </synopsis> </para> </listitem> |