diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-03-23 23:37:17 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-03-23 23:37:17 +0000 |
commit | 1c4da387adefc7ae4f79ccb227e976d2b6edb743 (patch) | |
tree | 9c328ff05c02ce6609fcc4df20bcf0a04f712859 | |
parent | 8ed89773c5c50548310a40fa57fa065b447276a1 (diff) | |
download | postgresql-1c4da387adefc7ae4f79ccb227e976d2b6edb743.tar.gz postgresql-1c4da387adefc7ae4f79ccb227e976d2b6edb743.zip |
PQresult should be PGresult.
-rw-r--r-- | doc/src/sgml/libpq.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index ee30b0d7e57..4ac37439701 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -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"> @@ -1487,7 +1487,7 @@ Note that error fields are only available from Every command result should be freed via <function>PQclear</function> when it is no longer needed. <synopsis> -void PQclear(PQresult *res); +void PQclear(PGresult *res); </synopsis> </para> |