diff options
author | Noah Misch <noah@leadboat.com> | 2019-06-08 10:12:26 -0700 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2019-06-08 10:12:26 -0700 |
commit | 31d250e049b4e3d51a635edaa2221c11815e40e7 (patch) | |
tree | 974dc2122d471fa09c16ad0658d3353cc8b644e6 /src/backend/postmaster/postmaster.c | |
parent | 92c4abc73693690ce9ff13ede160f0dcb0a2de7b (diff) | |
download | postgresql-31d250e049b4e3d51a635edaa2221c11815e40e7.tar.gz postgresql-31d250e049b4e3d51a635edaa2221c11815e40e7.zip |
Update stale comments, and fix comment typos.
Diffstat (limited to 'src/backend/postmaster/postmaster.c')
-rw-r--r-- | src/backend/postmaster/postmaster.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index dd16938d9c7..688ad439edb 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -4743,8 +4743,8 @@ retry: } /* - * Queue a waiter for to signal when this child dies. The wait will be - * handled automatically by an operating system thread pool. + * Queue a waiter to signal when this child dies. The wait will be handled + * automatically by an operating system thread pool. * * Note: use malloc instead of palloc, since it needs to be thread-safe. * Struct will be free():d from the callback function that runs on a |