1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-03 22:24:49 +03:00

PQresult should be PGresult.

This commit is contained in:
Tom Lane 2004-03-23 23:37:17 +00:00
parent 8ed89773c5
commit 1c4da387ad

View File

@ -1,5 +1,5 @@
<!-- <!--
$PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.148 2004/03/21 22:29:10 tgl Exp $ $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.149 2004/03/23 23:37:17 tgl Exp $
--> -->
<chapter id="libpq"> <chapter id="libpq">
@ -1487,7 +1487,7 @@ Note that error fields are only available from
Every command result should be freed via <function>PQclear</function> when Every command result should be freed via <function>PQclear</function> when
it is no longer needed. it is no longer needed.
<synopsis> <synopsis>
void PQclear(PQresult *res); void PQclear(PGresult *res);
</synopsis> </synopsis>
</para> </para>