Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f2bf2d2

Browse files
committed
Fix a couple of bogus comments, per Alvaro.
1 parent 5a4c2a7 commit f2bf2d2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/backend/access/transam/xact.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $PostgreSQL: pgsql/src/backend/access/transam/xact.c,v 1.209 2005/06/29 22:51:53 tgl Exp $
13+
* $PostgreSQL: pgsql/src/backend/access/transam/xact.c,v 1.210 2005/07/13 22:46:09 tgl Exp $
1414
*
1515
*-------------------------------------------------------------------------
1616
*/
@@ -1485,7 +1485,7 @@ CommitTransaction(void)
14851485

14861486
/*
14871487
* set the current transaction state information appropriately during
1488-
* the abort processing
1488+
* commit processing
14891489
*/
14901490
s->state = TRANS_COMMIT;
14911491

@@ -1677,7 +1677,7 @@ PrepareTransaction(void)
16771677

16781678
/*
16791679
* set the current transaction state information appropriately during
1680-
* the processing
1680+
* prepare processing
16811681
*/
16821682
s->state = TRANS_PREPARE;
16831683

src/backend/catalog/heap.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/catalog/heap.c,v 1.286 2005/07/07 20:39:57 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/catalog/heap.c,v 1.287 2005/07/13 22:46:09 tgl Exp $
1212
*
1313
*
1414
* INTERFACE ROUTINES
@@ -296,7 +296,7 @@ heap_create(const char *relname,
296296
/* ----------------------------------------------------------------
297297
* heap_create_with_catalog - Create a cataloged relation
298298
*
299-
* this is done in 6 steps:
299+
* this is done in multiple steps:
300300
*
301301
* 1) CheckAttributeNamesTypes() is used to make certain the tuple
302302
* descriptor contains a valid set of attribute names and types

0 commit comments

Comments
 (0)