diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2024-01-26 12:38:15 +0100 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2024-01-26 12:38:15 +0100 |
commit | 8c9da1441df18bd609f025778e8349873a3e9bbd (patch) | |
tree | 5b3f100b19e2c97b1a7dbeab93c535668eaa60c4 /src/backend/storage/lmgr/proc.c | |
parent | 64444ce071f6b04d3fc836f436fa08108a6d11e2 (diff) | |
download | postgresql-8c9da1441df18bd609f025778e8349873a3e9bbd.tar.gz postgresql-8c9da1441df18bd609f025778e8349873a3e9bbd.zip |
Make spelling of cancelled/cancellation consistent
This fixes places where words derived from cancel were not using their
common en-US ugly^H^H^H^Hspelling.
Author: Jelte Fennema-Nio <postgres@jeltef.nl>
Reported-by: Thomas Munro <thomas.munro@gmail.com>
Discussion: https://postgr.es/m/CA+hUKG+Lrq+ty6yWXF5572qNQ8KwxGwG5n4fsEcCUap685nWvQ@mail.gmail.com
Diffstat (limited to 'src/backend/storage/lmgr/proc.c')
-rw-r--r-- | src/backend/storage/lmgr/proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/lmgr/proc.c b/src/backend/storage/lmgr/proc.c index 4ad96beb87a..e5977548fe2 100644 --- a/src/backend/storage/lmgr/proc.c +++ b/src/backend/storage/lmgr/proc.c @@ -1353,7 +1353,7 @@ ProcSleep(LOCALLOCK *locallock, LockMethod lockMethodTable) * coding means that there is a tiny chance that the process * terminates its current transaction and starts a different one * before we have a change to send the signal; the worst possible - * consequence is that a for-wraparound vacuum is cancelled. But + * consequence is that a for-wraparound vacuum is canceled. But * that could happen in any case unless we were to do kill() with * the lock held, which is much more undesirable. */ |