diff options
author | Magnus Hagander <magnus@hagander.net> | 2012-01-26 16:02:33 +0100 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2012-01-26 16:02:33 +0100 |
commit | 7729e22d83b31afa1009f190bf0f4838cc8feaf8 (patch) | |
tree | 2a3b12525a65d869f4cfec150da2f1f45895e855 /src | |
parent | 61cb8c5abb9235c3106af6c6a6e60d94cb1eee80 (diff) | |
download | postgresql-7729e22d83b31afa1009f190bf0f4838cc8feaf8.tar.gz postgresql-7729e22d83b31afa1009f190bf0f4838cc8feaf8.zip |
Fix a copy/pasted typo in several comments
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/postmaster/pgstat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/postmaster/pgstat.c b/src/backend/postmaster/pgstat.c index 84d790a3faf..a53fc52f470 100644 --- a/src/backend/postmaster/pgstat.c +++ b/src/backend/postmaster/pgstat.c @@ -4454,7 +4454,7 @@ pgstat_recv_bgwriter(PgStat_MsgBgWriter *msg, int len) /* ---------- * pgstat_recv_recoveryconflict() - * - * Process as RECOVERYCONFLICT message. + * Process a RECOVERYCONFLICT message. * ---------- */ static void @@ -4494,7 +4494,7 @@ pgstat_recv_recoveryconflict(PgStat_MsgRecoveryConflict *msg, int len) /* ---------- * pgstat_recv_deadlock() - * - * Process as DEADLOCK message. + * Process a DEADLOCK message. * ---------- */ static void @@ -4510,7 +4510,7 @@ pgstat_recv_deadlock(PgStat_MsgDeadlock *msg, int len) /* ---------- * pgstat_recv_tempfile() - * - * Process as PGSTAT_MTYPE_TEMPFILE message. + * Process a TEMPFILE message. * ---------- */ static void |