summaryrefslogtreecommitdiff
path: root/src/bin/psql/stringutils.c
diff options
context:
space:
mode:
authorTom Lane2003-03-10 22:28:22 +0000
committerTom Lane2003-03-10 22:28:22 +0000
commitc962644473600e7dab4a5ee1596593cf9f95cfca (patch)
tree4c378495a1c62cdae92bfc7e4a66e29a75004363 /src/bin/psql/stringutils.c
parent4722fc5519e6a43632fd01b567e766e4472a941f (diff)
This patch fixes a bunch of spelling mistakes in comments throughout the
PostgreSQL source code. Neil Conway
Diffstat (limited to 'src/bin/psql/stringutils.c')
-rw-r--r--src/bin/psql/stringutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/stringutils.c b/src/bin/psql/stringutils.c
index 18be9882fa..35e57b02e6 100644
--- a/src/bin/psql/stringutils.c
+++ b/src/bin/psql/stringutils.c
@@ -39,7 +39,7 @@ static void strip_quotes(char *source, char quote, char escape, int encoding);
* Characters in 'delim', if any, will be returned as single-character
* tokens unless part of a quoted token.
*
- * Double occurences of the quoting character are always taken to represent
+ * Double occurrences of the quoting character are always taken to represent
* a single quote character in the data. If escape isn't 0, then escape
* followed by anything (except \0) is a data character too.
*