diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-05-04 14:25:24 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-05-04 14:25:24 +0000 |
commit | f593dda030a681dfa4a0d3245a4c01ee7d2a999f (patch) | |
tree | bfa5b0362a5a0721123034f26549966976dcfbc7 /src/bin/psql/tab-complete.c | |
parent | 126eaef651ec96a48b18a111aa888b9be46e16fa (diff) |
Spell DELIMITER correctly, per Seamus Dean.
Diffstat (limited to 'src/bin/psql/tab-complete.c')
-rw-r--r-- | src/bin/psql/tab-complete.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 86df578aae2..b45ceeeeed6 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/tab-complete.c,v 1.125 2005/04/21 19:18:13 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/psql/tab-complete.c,v 1.126 2005/05/04 14:25:24 tgl Exp $ */ /*---------------------------------------------------------------------- @@ -1029,7 +1029,7 @@ psql_completion(char *text, int start, int end) pg_strcasecmp(prev2_wd, "TO") == 0)) { static const char *const list_COPY[] = - {"BINARY", "OIDS", "DELIMETER", "NULL", "CSV", NULL}; + {"BINARY", "OIDS", "DELIMITER", "NULL", "CSV", NULL}; COMPLETE_WITH_LIST(list_COPY); } |