diff options
author | Fujii Masao <fujii@postgresql.org> | 2020-08-21 12:33:30 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2020-08-21 12:35:22 +0900 |
commit | d259afa7365165760004c2fdbe2520a94ddf2600 (patch) | |
tree | 31439a85078c22a5f43c5cac72d07d24437b77f0 | |
parent | 8431d33079a2c552aaa223ebcfd470572d90146b (diff) |
Fix typos in comments.
Author: Masahiko Sawada
Reviewed-by: Fujii Masao
Discussion: https://postgr.es/m/CA+fd4k4m9hFSrRLB3etPWO5_v5=MujVZWRtz63q+55hM0Dz25Q@mail.gmail.com
-rw-r--r-- | src/backend/storage/ipc/procarray.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/storage/ipc/procarray.c b/src/backend/storage/ipc/procarray.c index 60b7a5db8e0..45eab7e5a62 100644 --- a/src/backend/storage/ipc/procarray.c +++ b/src/backend/storage/ipc/procarray.c @@ -198,7 +198,7 @@ typedef struct ComputeXidHorizonsResult * be removed. * * This likely should only be needed to determine whether pg_subtrans can - * be truncated. It currently includes the effects of replications slots, + * be truncated. It currently includes the effects of replication slots, * for historical reasons. But that could likely be changed. */ TransactionId oldest_considered_running; @@ -207,7 +207,7 @@ typedef struct ComputeXidHorizonsResult * Oldest xid for which deleted tuples need to be retained in shared * tables. * - * This includes the effects of replications lots. If that's not desired, + * This includes the effects of replication slots. If that's not desired, * look at shared_oldest_nonremovable_raw; */ TransactionId shared_oldest_nonremovable; |