diff options
author | Michael Paquier | 2023-05-02 03:23:08 +0000 |
---|---|---|
committer | Michael Paquier | 2023-05-02 03:23:08 +0000 |
commit | 8961cb9a0315fa23458587b3df547ca8d8e00f85 (patch) | |
tree | f9ea45d43d53950d56062dc9eb0cebe547503718 /src/backend/replication/syncrep.c | |
parent | 6fd8ae6888847da842ee4810fcd83b013cbed27f (diff) |
Fix typos in comments
The changes done in this commit impact comments with no direct
user-visible changes, with fixes for incorrect function, variable or
structure names.
Author: Alexander Lakhin
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'src/backend/replication/syncrep.c')
-rw-r--r-- | src/backend/replication/syncrep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/syncrep.c b/src/backend/replication/syncrep.c index 889e20b5dd5..c263a596901 100644 --- a/src/backend/replication/syncrep.c +++ b/src/backend/replication/syncrep.c @@ -804,7 +804,7 @@ standby_priority_comparator(const void *a, const void *b) /* * We might have equal priority values; arbitrarily break ties by position - * in the WALSnd array. (This is utterly bogus, since that is arrival + * in the WalSnd array. (This is utterly bogus, since that is arrival * order dependent, but there are regression tests that rely on it.) */ return sa->walsnd_index - sb->walsnd_index; |