From 89b5676b65b5f27fcab4f972390197983d7a9bfe Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 19 Sep 2021 11:36:53 -0400 Subject: [PATCH] Doc: fix typos. "PGcon" should be "PGconn". Noted by D. Frey. Discussion: https://postgr.es/m/163191739352.4680.16994248583642672629@wrigleys.postgresql.org --- doc/src/sgml/lobj.sgml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/sgml/lobj.sgml b/doc/src/sgml/lobj.sgml index cf4653fe0f..335145ac89 100644 --- a/doc/src/sgml/lobj.sgml +++ b/doc/src/sgml/lobj.sgml @@ -449,7 +449,7 @@ pg_int64 lo_tell64(PGconn *conn, int fd); lo_truncate To truncate a large object to a given length, call -int lo_truncate(PGcon *conn, int fd, size_t len); +int lo_truncate(PGconn *conn, int fd, size_t len); This function truncates the large object descriptor fd to length len. The @@ -477,7 +477,7 @@ int lo_truncate(PGcon *conn, int fd, size_t len); When dealing with large objects that might exceed 2GB in size, instead use -int lo_truncate64(PGcon *conn, int fd, pg_int64 len); +int lo_truncate64(PGconn *conn, int fd, pg_int64 len); This function has the same behavior as lo_truncate, but it can accept a