Skip to content

Commit d5eeb51

Browse files
committed
Doc: fix typos.
"PGcon" should be "PGconn". Noted by D. Frey. Discussion: https://postgr.es/m/163191739352.4680.16994248583642672629@wrigleys.postgresql.org
1 parent 7c83a3b commit d5eeb51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/src/sgml/lobj.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ pg_int64 lo_tell64(PGconn *conn, int fd);
453453
<indexterm><primary>lo_truncate</primary></indexterm>
454454
To truncate a large object to a given length, call
455455
<synopsis>
456-
int lo_truncate(PGcon *conn, int fd, size_t len);
456+
int lo_truncate(PGconn *conn, int fd, size_t len);
457457
</synopsis>
458458
This function truncates the large object
459459
descriptor <parameter>fd</parameter> to length <parameter>len</parameter>. The
@@ -481,7 +481,7 @@ int lo_truncate(PGcon *conn, int fd, size_t len);
481481
When dealing with large objects that might exceed 2GB in size,
482482
instead use
483483
<synopsis>
484-
int lo_truncate64(PGcon *conn, int fd, pg_int64 len);
484+
int lo_truncate64(PGconn *conn, int fd, pg_int64 len);
485485
</synopsis>
486486
This function has the same
487487
behavior as <function>lo_truncate</function>, but it can accept a

0 commit comments

Comments
 (0)