diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2024-05-02 10:38:28 +0200 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2024-05-02 10:38:28 +0200 |
commit | a27ccc235d5fd313d79ee16d45ba9bf0b0d80f5f (patch) | |
tree | cbce2defd4f1f5fae8e054c89db649c749d2f4c0 /doc/src | |
parent | 4a65e1c21290f15a1b5996eeb4700af034844ebd (diff) | |
download | postgresql-a27ccc235d5fd313d79ee16d45ba9bf0b0d80f5f.tar.gz postgresql-a27ccc235d5fd313d79ee16d45ba9bf0b0d80f5f.zip |
doc: Fix incorrectly spelled structname
Commit 61461a300c1 accidentally misspelled the PGcancelConn struct
using the PQ prefix (which admittedly is a very easy typo to make).
Reported off-list.
Reported-by: Alexander Lakhin <exclusion@gmail.com>
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/libpq.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index aed45f3428b..101c676e085 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -6517,7 +6517,7 @@ int PQcancelSocket(const PGcancelConn *cancelConn); A valid descriptor will be greater than or equal to 0; a result of -1 indicates that no server connection is currently open. This might change as a result of calling any of the functions - in this section on the <structname>PQcancelConn</structname> + in this section on the <structname>PGcancelConn</structname> (except for <xref linkend="libpq-PQcancelErrorMessage"/> and <function>PQcancelSocket</function> itself). </para> |