diff options
author | Michael Paquier <michael@paquier.xyz> | 2025-04-19 19:17:42 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2025-04-19 19:17:42 +0900 |
commit | 88e947136b47664b6936b35542f2d1eda0c90588 (patch) | |
tree | 6a5999ed2088fb1455940632b70a8d452ec56347 /src/backend/postmaster | |
parent | 114f7fa81c72637d75b574269f2076dcc1104e24 (diff) | |
download | postgresql-88e947136b47664b6936b35542f2d1eda0c90588.tar.gz postgresql-88e947136b47664b6936b35542f2d1eda0c90588.zip |
Fix typos and grammar in the code
The large majority of these have been introduced by recent commits done
in the v18 development cycle.
Author: Alexander Lakhin <exclusion@gmail.com>
Discussion: https://postgr.es/m/9a7763ab-5252-429d-a943-b28941e0e28b@gmail.com
Diffstat (limited to 'src/backend/postmaster')
-rw-r--r-- | src/backend/postmaster/postmaster.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 17fed96fe20..490f7ce3664 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -2718,7 +2718,7 @@ HandleFatalError(QuitSignalReason reason, bool consider_sigabrt) /* * Choose the appropriate new state to react to the fatal error. Unless we * were already in the process of shutting down, we go through - * PM_WAIT_BACKEND. For errors during the shutdown sequence, we directly + * PM_WAIT_BACKENDS. For errors during the shutdown sequence, we directly * switch to PM_WAIT_DEAD_END. */ switch (pmState) @@ -3001,7 +3001,7 @@ PostmasterStateMachine(void) /* * Stop any dead-end children and stop creating new ones. * - * NB: Similar code exists in HandleFatalErrors(), when the + * NB: Similar code exists in HandleFatalError(), when the * error happens in pmState > PM_WAIT_BACKENDS. */ UpdatePMState(PM_WAIT_DEAD_END); @@ -3082,7 +3082,7 @@ PostmasterStateMachine(void) { /* * PM_WAIT_IO_WORKERS state ends when there's only checkpointer and - * dead_end children left. + * dead-end children left. */ if (io_worker_count == 0) { |