More psql help cleanup
authorBruce Momjian <[email protected]>
Thu, 11 May 2000 18:41:00 +0000 (18:41 +0000)
committerBruce Momjian <[email protected]>
Thu, 11 May 2000 18:41:00 +0000 (18:41 +0000)
src/bin/psql/help.c

index cf43cdfe486e87abb5b74c94f825e42dcd9b5947..8389ebf6b1917737766ef28846b91a17373a5d24 100644 (file)
@@ -117,7 +117,7 @@ usage(void)
        puts("  -R <string>     Set record separator (default: newline) (-P recordsep=)");
        puts("  -s              Single step mode (confirm each query)");
        puts("  -S              Single line mode (newline terminates query)");
-       puts("  -t              Don't print headings and row count (-P tuples_only)");
+       puts("  -t              Print rows only (-P tuples_only)");
        puts("  -T text         Set HTML table tag options (width, border) (-P tableattr=)");
 
        /* Display default user */
@@ -232,7 +232,7 @@ slashUsage(void)
        fprintf(fout, " \\r             reset (clear) the query buffer\n");
        fprintf(fout, " \\s [file]      print history or save it in [file]\n");
        fprintf(fout, " \\set <var> <value>  set internal variable\n");
-       fprintf(fout, " \\t             don't show table headers or footers (currently %s)\n", ON(pset.popt.topt.tuples_only));
+       fprintf(fout, " \\t             show only rows (currently %s)\n", ON(pset.popt.topt.tuples_only));
        fprintf(fout, " \\T <tags>      HTML table tags\n");
        fprintf(fout, " \\unset <var>   unset (delete) internal variable\n");
        fprintf(fout, " \\w <file>      write current query buffer to a <file>\n");