aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/gist/gistproc.c
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2015-09-05 11:35:49 +0300
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2015-09-05 11:36:18 +0300
commit25600c42e078e0d10eedf2794a0c7d02178232e0 (patch)
treeed944b53c9fe20f1533535f3a8ec174c2262af49 /src/backend/access/gist/gistproc.c
parentb1cbc8529d076b71c9c2f8403139f7235072a357 (diff)
downloadpostgresql-25600c42e078e0d10eedf2794a0c7d02178232e0.tar.gz
postgresql-25600c42e078e0d10eedf2794a0c7d02178232e0.zip
Fix misc typos.
Oskari Saarenmaa. Backpatch to stable branches where applicable.
Diffstat (limited to 'src/backend/access/gist/gistproc.c')
-rw-r--r--src/backend/access/gist/gistproc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/gist/gistproc.c b/src/backend/access/gist/gistproc.c
index 4cea3f1be18..22ae31c0f87 100644
--- a/src/backend/access/gist/gistproc.c
+++ b/src/backend/access/gist/gistproc.c
@@ -588,7 +588,7 @@ gist_box_picksplit(PG_FUNCTION_ARGS)
* We first consider splits where b is the lower bound of an entry.
* We iterate through all entries, and for each b, calculate the
* smallest possible a. Then we consider splits where a is the
- * uppper bound of an entry, and for each a, calculate the greatest
+ * upper bound of an entry, and for each a, calculate the greatest
* possible b.
*
* In the above example, the first loop would consider splits:
@@ -638,7 +638,7 @@ gist_box_picksplit(PG_FUNCTION_ARGS)
}
/*
- * Iterate over upper bound of left group finding greates possible
+ * Iterate over upper bound of left group finding greatest possible
* lower bound of right group.
*/
i1 = nentries - 1;