summaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
authorTom Lane2005-07-13 22:46:09 +0000
committerTom Lane2005-07-13 22:46:09 +0000
commitf2bf2d2dc5cef3f5b9cf50493490fa9931f982b2 (patch)
treed437e8a6cc656a93522a07c2cee5880e0546d49a /src/backend
parent5a4c2a75d128063249b2c66cc7869252dca619a8 (diff)
Fix a couple of bogus comments, per Alvaro.
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/access/transam/xact.c6
-rw-r--r--src/backend/catalog/heap.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/access/transam/xact.c b/src/backend/access/transam/xact.c
index 1df9cfa7ba0..c75da3d432c 100644
--- a/src/backend/access/transam/xact.c
+++ b/src/backend/access/transam/xact.c
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/access/transam/xact.c,v 1.209 2005/06/29 22:51:53 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/access/transam/xact.c,v 1.210 2005/07/13 22:46:09 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -1485,7 +1485,7 @@ CommitTransaction(void)
/*
* set the current transaction state information appropriately during
- * the abort processing
+ * commit processing
*/
s->state = TRANS_COMMIT;
@@ -1677,7 +1677,7 @@ PrepareTransaction(void)
/*
* set the current transaction state information appropriately during
- * the processing
+ * prepare processing
*/
s->state = TRANS_PREPARE;
diff --git a/src/backend/catalog/heap.c b/src/backend/catalog/heap.c
index 29fd3b0b6d7..9b95f3c2d70 100644
--- a/src/backend/catalog/heap.c
+++ b/src/backend/catalog/heap.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/catalog/heap.c,v 1.286 2005/07/07 20:39:57 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/catalog/heap.c,v 1.287 2005/07/13 22:46:09 tgl Exp $
*
*
* INTERFACE ROUTINES
@@ -296,7 +296,7 @@ heap_create(const char *relname,
/* ----------------------------------------------------------------
* heap_create_with_catalog - Create a cataloged relation
*
- * this is done in 6 steps:
+ * this is done in multiple steps:
*
* 1) CheckAttributeNamesTypes() is used to make certain the tuple
* descriptor contains a valid set of attribute names and types