1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-29 10:41:53 +03:00

Fix misc typos.

Oskari Saarenmaa. Backpatch to stable branches where applicable.
This commit is contained in:
Heikki Linnakangas
2015-09-05 11:35:49 +03:00
parent 39ebb64669
commit 68f4b68e4e
6 changed files with 8 additions and 8 deletions

View File

@ -578,7 +578,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:
@ -628,7 +628,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;