aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2007-10-16 18:02:26 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2007-10-16 18:02:26 +0000
commit2011bebc89532c33c7095fd707187c59779c6276 (patch)
treeb3a8c746285a778ccdb65af25bd242c776c58db0 /src
parent56303abff0e30cbac3faedd17c7b52ea9886ffba (diff)
downloadpostgresql-2011bebc89532c33c7095fd707187c59779c6276.tar.gz
postgresql-2011bebc89532c33c7095fd707187c59779c6276.zip
Use 'token' not 'lexeme' to describe the output of a parser.
Diffstat (limited to 'src')
-rw-r--r--src/bin/psql/describe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c
index 5c68803cc7c..70b8bda8668 100644
--- a/src/bin/psql/describe.c
+++ b/src/bin/psql/describe.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2007, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.159 2007/08/22 02:25:34 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.160 2007/10/16 18:02:26 tgl Exp $
*/
#include "postgres_fe.h"
#include "describe.h"
@@ -2101,7 +2101,7 @@ describeOneTSParser(const char *oid, const char *nspname, const char *prsname)
_("Get next token"), oid,
_("End parse"), oid,
_("Get headline"), oid,
- _("Get lexeme types"), oid
+ _("Get token types"), oid
);
res = PSQLexec(buf.data, false);