diff options
author | Neil Conway <neilc@samurai.com> | 2007-02-01 04:16:08 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2007-02-01 04:16:08 +0000 |
commit | dbcaee49b5352576a99995fb0afc82f7e2163e4f (patch) | |
tree | d3a851d748ca872b22de659d860837062468f905 /src/backend/access/gin/ginbtree.c | |
parent | b3687889c486d3a808cad0b46d6bf6c71d943d1c (diff) |
Fix a few typos in comments in GiN.
Diffstat (limited to 'src/backend/access/gin/ginbtree.c')
-rw-r--r-- | src/backend/access/gin/ginbtree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/gin/ginbtree.c b/src/backend/access/gin/ginbtree.c index f0d1604144b..854a3586827 100644 --- a/src/backend/access/gin/ginbtree.c +++ b/src/backend/access/gin/ginbtree.c @@ -8,7 +8,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/access/gin/ginbtree.c,v 1.7 2007/01/05 22:19:21 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/access/gin/ginbtree.c,v 1.8 2007/02/01 04:16:07 neilc Exp $ *------------------------------------------------------------------------- */ @@ -317,7 +317,7 @@ ginInsertValue(GinBtree btree, GinBtreeStack *stack) /* * newlpage is a pointer to memory page, it doesn't associate - * with buffer, stack->buffer shoud be untouched + * with buffer, stack->buffer should be untouched */ newlpage = btree->splitPage(btree, stack->buffer, rbuffer, stack->off, &rdata); |