diff options
author | Tom Lane | 2021-09-19 15:36:53 +0000 |
---|---|---|
committer | Tom Lane | 2021-09-19 15:36:53 +0000 |
commit | d5eeb51bc053d75f647136026de522d6ee3bf725 (patch) | |
tree | 20286ad47e8864563887dad26ac142a4b566d4a7 /doc/src/sgml/lobj.sgml | |
parent | 7c83a3bf51489e5b48c567c2ac54fed030d23c52 (diff) |
Doc: fix typos.
"PGcon" should be "PGconn". Noted by D. Frey.
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'doc/src/sgml/lobj.sgml')
-rw-r--r-- | doc/src/sgml/lobj.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/lobj.sgml b/doc/src/sgml/lobj.sgml index 012e44c7361..59c34710926 100644 --- a/doc/src/sgml/lobj.sgml +++ b/doc/src/sgml/lobj.sgml @@ -453,7 +453,7 @@ pg_int64 lo_tell64(PGconn *conn, int fd); <indexterm><primary>lo_truncate</primary></indexterm> To truncate a large object to a given length, call <synopsis> -int lo_truncate(PGcon *conn, int fd, size_t len); +int lo_truncate(PGconn *conn, int fd, size_t len); </synopsis> This function truncates the large object descriptor <parameter>fd</parameter> to length <parameter>len</parameter>. The @@ -481,7 +481,7 @@ int lo_truncate(PGcon *conn, int fd, size_t len); When dealing with large objects that might exceed 2GB in size, instead use <synopsis> -int lo_truncate64(PGcon *conn, int fd, pg_int64 len); +int lo_truncate64(PGconn *conn, int fd, pg_int64 len); </synopsis> This function has the same behavior as <function>lo_truncate</function>, but it can accept a |