summaryrefslogtreecommitdiff
path: root/src/backend/access/common/indextuple.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/access/common/indextuple.c
parente9d7bd2650f63f3395d8d597c37caffc67803b94 (diff)
downloadpostgresql-5f9869d0ee1ec8b4d45cc50334cd8c5582969f3b.tar.gz
Use "alternative" instead of "alternate" where it is clearer.
Diffstat (limited to 'src/backend/access/common/indextuple.c')
-rw-r--r--src/backend/access/common/indextuple.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/common/indextuple.c b/src/backend/access/common/indextuple.c
index 471d28c28c..5412ca0cf3 100644
--- a/src/backend/access/common/indextuple.c
+++ b/src/backend/access/common/indextuple.c
@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/access/common/indextuple.c,v 1.82 2007/04/06 04:21:41 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/access/common/indextuple.c,v 1.83 2007/11/07 12:24:24 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -186,7 +186,7 @@ index_form_tuple(TupleDesc tupleDescriptor,
*
* This caches attribute offsets in the attribute descriptor.
*
- * An alternate way to speed things up would be to cache offsets
+ * An alternative way to speed things up would be to cache offsets
* with the tuple, but that seems more difficult unless you take
* the storage hit of actually putting those offsets into the
* tuple you send to disk. Yuck.