summaryrefslogtreecommitdiff
path: root/src/backend/catalog/pg_operator.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2007-11-07 12:24:24 +0000
committerPeter Eisentraut <peter_e@gmx.net>2007-11-07 12:24:24 +0000
commit5f9869d0ee1ec8b4d45cc50334cd8c5582969f3b (patch)
tree557979f35c5b949d1fd8db7375b10fea6623aea6 /src/backend/catalog/pg_operator.c
parente9d7bd2650f63f3395d8d597c37caffc67803b94 (diff)
downloadpostgresql-5f9869d0ee1ec8b4d45cc50334cd8c5582969f3b.tar.gz
Use "alternative" instead of "alternate" where it is clearer.
Diffstat (limited to 'src/backend/catalog/pg_operator.c')
-rw-r--r--src/backend/catalog/pg_operator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/catalog/pg_operator.c b/src/backend/catalog/pg_operator.c
index 10a1285205..55a0cc0839 100644
--- a/src/backend/catalog/pg_operator.c
+++ b/src/backend/catalog/pg_operator.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/catalog/pg_operator.c,v 1.100 2007/01/05 22:19:25 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/catalog/pg_operator.c,v 1.101 2007/11/07 12:24:24 petere Exp $
*
* NOTES
* these routines moved here from commands/define.c and somewhat cleaned up.
@@ -597,7 +597,7 @@ OperatorCreate(const char *operatorName,
/*
* If a commutator and/or negator link is provided, update the other
* operator(s) to point at this one, if they don't already have a link.
- * This supports an alternate style of operator definition wherein the
+ * This supports an alternative style of operator definition wherein the
* user first defines one operator without giving negator or commutator,
* then defines the other operator of the pair with the proper commutator
* or negator attribute. That style doesn't require creation of a shell,