diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2017-02-06 11:33:58 +0200 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2017-02-06 11:34:28 +0200 |
commit | e8f9fe4ae7ab2784ca42b264f4656249311ddfe4 (patch) | |
tree | 4a9ed5ef4298105f712611f9c9c401b843185c45 /src/bin/psql/common.c | |
parent | b87e1680b98465b002198ae49a4f4f2bce4d129e (diff) |
Fix typos in comments.
Backpatch to all supported versions, where applicable, to make backpatching
of future fixes go more smoothly.
Josh Soref
Discussion: https://www.postgresql.org/message-id/CACZqfqCf+5qRztLPgmmosr-B0Ye4srWzzw_mo4c_8_B_mtjmJQ@mail.gmail.com
Diffstat (limited to 'src/bin/psql/common.c')
-rw-r--r-- | src/bin/psql/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c index 31fcfbafb38..422a8c0e129 100644 --- a/src/bin/psql/common.c +++ b/src/bin/psql/common.c @@ -598,7 +598,7 @@ StoreQueryTuple(const PGresult *result) char *varname; char *value; - /* concate prefix and column name */ + /* concatenate prefix and column name */ varname = pg_malloc(strlen(pset.gset_prefix) + strlen(colname) + 1); strcpy(varname, pset.gset_prefix); strcat(varname, colname); |