diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-02-12 19:58:16 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-02-12 19:58:16 +0000 |
commit | 4a1c29f87e7e21c1e2cb97fdc48558975ed01f46 (patch) | |
tree | 29efdecb9c868f2e4e0403cf7bf982ff26c723c1 /src | |
parent | c60128e54b46936290902406d9aabcb15657dd2c (diff) | |
download | postgresql-4a1c29f87e7e21c1e2cb97fdc48558975ed01f46.tar.gz postgresql-4a1c29f87e7e21c1e2cb97fdc48558975ed01f46.zip |
Improve \? wording, remove 'internal'.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/startup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/startup.c b/src/bin/psql/startup.c index 04e64748814..a29ff23d799 100644 --- a/src/bin/psql/startup.c +++ b/src/bin/psql/startup.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2003, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.83 2004/01/25 03:07:22 neilc Exp $ + * $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.84 2004/02/12 19:58:16 momjian Exp $ */ #include "postgres_fe.h" @@ -267,8 +267,8 @@ main(int argc, char *argv[]) printf(gettext("Welcome to %s %s, the PostgreSQL interactive terminal.\n\n" "Type: \\copyright for distribution terms\n" " \\h for help with SQL commands\n" - " \\? for help on internal slash commands\n" - " \\g or terminate with semicolon to execute query\n" + " \\? for help with psql commands\n" + " \\g or terminate with semicolon to execute query\n" " \\q to quit\n\n"), pset.progname, PG_VERSION); #ifdef USE_SSL |