diff options
author | David Rowley <drowley@postgresql.org> | 2024-05-04 02:33:25 +1200 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2024-05-04 02:33:25 +1200 |
commit | a42fc1c903b54ba94374e5e0c08905b9a1479f19 (patch) | |
tree | 179e5cab5edf67090abbc3edd6e31fe50ff74e87 /src/backend/replication/logical | |
parent | 4a044b9497093f349605fb9912446c5f1bcf228c (diff) | |
download | postgresql-a42fc1c903b54ba94374e5e0c08905b9a1479f19.tar.gz postgresql-a42fc1c903b54ba94374e5e0c08905b9a1479f19.zip |
Fix an assortment of typos
Author: Alexander Lakhin
Discussion: https://postgr.es/m/ae9f2fcb-4b24-5bb0-4240-efbbbd944ca1@gmail.com
Diffstat (limited to 'src/backend/replication/logical')
-rw-r--r-- | src/backend/replication/logical/slotsync.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/replication/logical/slotsync.c b/src/backend/replication/logical/slotsync.c index 39ff5fe9696..3f3e5941bce 100644 --- a/src/backend/replication/logical/slotsync.c +++ b/src/backend/replication/logical/slotsync.c @@ -1041,8 +1041,8 @@ ValidateSlotSyncParams(int elevel) /* * Logical slot sync/creation requires wal_level >= logical. * - * Sincle altering the wal_level requires a server restart, so error out - * in this case regardless of elevel provided by caller. + * Since altering the wal_level requires a server restart, so error out in + * this case regardless of elevel provided by caller. */ if (wal_level < WAL_LEVEL_LOGICAL) ereport(ERROR, |