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:18 -0400 |
commit | 7f932f77c7eb068772355c76cfa48bc5d0260e2f (patch) | |
tree | 3a32d5a5a92fd1a05ac51251d2500323a24c796d | |
parent | 9c25a873d631036a92036394863eba1f4a3f3cd5 (diff) | |
download | postgresql-7f932f77c7eb068772355c76cfa48bc5d0260e2f.tar.gz postgresql-7f932f77c7eb068772355c76cfa48bc5d0260e2f.zip |
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
-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 2771e3b1a8e..106ae0984e8 100644 --- a/doc/src/sgml/ecpg.sgml +++ b/doc/src/sgml/ecpg.sgml @@ -3372,7 +3372,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> |