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:28 -0400 |
commit | 3d73d264e7efdb0bdf4633488039232b280995a6 (patch) | |
tree | a99a613f537428974cfcba63368eda71c7e864d7 | |
parent | 9c14d602436543067f1a5403cff2f8c2e6f13403 (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
-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 9aa0343eef7..03eb266d125 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> |