summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian1999-10-26 04:40:58 +0000
committerBruce Momjian1999-10-26 04:40:58 +0000
commit021146f3751cb554e438c3479b9266abef1f9a8d (patch)
treea4ad711425e27f5cd1b7d18c624c13814b302c07
parent2c212b2c5488467a2fd2b7559cd302c1bcdf1ab0 (diff)
improve manual page
-rw-r--r--doc/src/sgml/ref/psql-ref.sgml5
-rw-r--r--src/bin/psql/psql.c4
2 files changed, 4 insertions, 5 deletions
diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml
index ec837b43b92..888aaa676e9 100644
--- a/doc/src/sgml/ref/psql-ref.sgml
+++ b/doc/src/sgml/ref/psql-ref.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.12 1999/10/14 01:28:41 momjian Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.13 1999/10/26 04:40:56 momjian Exp $
Postgres documentation
-->
@@ -671,8 +671,7 @@ testdb=>
<listitem>
<para>
List the description from <literal>pg_description</literal>
- of the specified object, which can be a
- table, table.column, type, operator, or aggregate.
+ of the specified object.
</para>
<tip>
<para>
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c
index e61ac491446..ca2fc6f27c1 100644
--- a/src/bin/psql/psql.c
+++ b/src/bin/psql/psql.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.194 1999/10/25 03:07:54 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.195 1999/10/26 04:40:58 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -274,7 +274,7 @@ slashUsage(PsqlSettings *pset)
fprintf(fout, " \\copy table {from | to} <fname>\n");
fprintf(fout, " \\d [<table>] -- list tables and indices, columns in <table>, or * for all\n");
fprintf(fout, " \\da -- list aggregates\n");
- fprintf(fout, " \\dd [<object>]- list comment for table, field, type, function, or operator.\n");
+ fprintf(fout, " \\dd [<object>]- list comment an object.\n");
fprintf(fout, " \\df -- list functions\n");
fprintf(fout, " \\di -- list only indices\n");
fprintf(fout, " \\do -- list operators\n");