1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-09 22:41:56 +03:00

Fix more typos in comments.

Patch by CharSyam, plus a few more I spotted with grep.
This commit is contained in:
Heikki Linnakangas
2015-05-20 19:44:46 +03:00
parent 4fc72cc7bb
commit fa60fb63e5
23 changed files with 29 additions and 29 deletions

View File

@ -9,7 +9,7 @@ is implemented by storing locking information in the tuple header: a tuple is
marked as locked by setting the current transaction's XID as its XMAX, and
setting additional infomask bits to distinguish this case from the more normal
case of having deleted the tuple. When multiple transactions concurrently
lock a tuple, a MultiXact is used; see below. This mechanism can accomodate
lock a tuple, a MultiXact is used; see below. This mechanism can accommodate
arbitrarily large numbers of tuples being locked simultaneously.
When it is necessary to wait for a tuple-level lock to be released, the basic