diff options
author | Robert Haas <rhaas@postgresql.org> | 2010-04-23 23:21:44 +0000 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2010-04-23 23:21:44 +0000 |
commit | 33980a0640e9b495fe85a99c16c6b4806e41325a (patch) | |
tree | 85975dfc1e6a7be6a282b6278337448468d87c76 /src/backend/access/heap/visibilitymap.c | |
parent | 473af3973710b9e2f4e945d8290adae8de9696cc (diff) | |
download | postgresql-33980a0640e9b495fe85a99c16c6b4806e41325a.tar.gz postgresql-33980a0640e9b495fe85a99c16c6b4806e41325a.zip |
Fix various instances of "the the".
Two of these were pointed out by Erik Rijkers; the rest I found.
Diffstat (limited to 'src/backend/access/heap/visibilitymap.c')
-rw-r--r-- | src/backend/access/heap/visibilitymap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/access/heap/visibilitymap.c b/src/backend/access/heap/visibilitymap.c index 1ae92e6fe82..88a0c74e32a 100644 --- a/src/backend/access/heap/visibilitymap.c +++ b/src/backend/access/heap/visibilitymap.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/access/heap/visibilitymap.c,v 1.9 2010/02/26 02:00:33 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/access/heap/visibilitymap.c,v 1.10 2010/04/23 23:21:44 rhaas Exp $ * * INTERFACE ROUTINES * visibilitymap_clear - clear a bit in the visibility map @@ -173,7 +173,7 @@ visibilitymap_clear(Relation rel, BlockNumber heapBlk) * On entry, *buf should be InvalidBuffer or a valid buffer returned by * an earlier call to visibilitymap_pin or visibilitymap_test on the same * relation. On return, *buf is a valid buffer with the map page containing - * the the bit for heapBlk. + * the bit for heapBlk. * * If the page doesn't exist in the map file yet, it is extended. */ @@ -247,7 +247,7 @@ visibilitymap_set(Relation rel, BlockNumber heapBlk, XLogRecPtr recptr, * On entry, *buf should be InvalidBuffer or a valid buffer returned by an * earlier call to visibilitymap_pin or visibilitymap_test on the same * relation. On return, *buf is a valid buffer with the map page containing - * the the bit for heapBlk, or InvalidBuffer. The caller is responsible for + * the bit for heapBlk, or InvalidBuffer. The caller is responsible for * releasing *buf after it's done testing and setting bits. */ bool |