From: Bruce Momjian Date: Tue, 26 Oct 1999 04:40:58 +0000 (+0000) Subject: improve manual page X-Git-Tag: REL7_0~1261 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=021146f3751cb554e438c3479b9266abef1f9a8d;p=postgresql improve manual page --- diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index ec837b43b9..888aaa676e 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -1,5 +1,5 @@ @@ -671,8 +671,7 @@ testdb=> List the description from pg_description - of the specified object, which can be a - table, table.column, type, operator, or aggregate. + of the specified object. diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index e61ac49144..ca2fc6f27c 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} \n"); fprintf(fout, " \\d [] -- list tables and indices, columns in
, or * for all\n"); fprintf(fout, " \\da -- list aggregates\n"); - fprintf(fout, " \\dd []- list comment for table, field, type, function, or operator.\n"); + fprintf(fout, " \\dd []- list comment an object.\n"); fprintf(fout, " \\df -- list functions\n"); fprintf(fout, " \\di -- list only indices\n"); fprintf(fout, " \\do -- list operators\n");