diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2010-09-15 13:58:22 +0000 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2010-09-15 13:58:22 +0000 |
commit | 79b54816dbe5a53c1f9c9b1c1aa4edf8977569d8 (patch) | |
tree | c959522d19233b43be8c2d066f372e361e03f43e | |
parent | 723d0184e2972f21db0f85feef3d35f0cb9b3298 (diff) | |
download | postgresql-79b54816dbe5a53c1f9c9b1c1aa4edf8977569d8.tar.gz postgresql-79b54816dbe5a53c1f9c9b1c1aa4edf8977569d8.zip |
Fix two typos in comments, spotted by Fujii Masao and Thom Brown
-rw-r--r-- | src/backend/access/transam/xlog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 7135196b224..7fb0bdaee7b 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.435 2010/09/15 10:35:05 heikki Exp $ + * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.436 2010/09/15 13:58:22 heikki Exp $ * *------------------------------------------------------------------------- */ @@ -5824,7 +5824,7 @@ StartupXLOG(void) } /* - * Take ownership of the wakup latch if we're going to sleep during + * Take ownership of the wakeup latch if we're going to sleep during * recovery. */ if (StandbyMode) @@ -6292,7 +6292,7 @@ StartupXLOG(void) /* * We don't need the latch anymore. It's not strictly necessary to disown - * it, but let's do it for the sake of tidyness. + * it, but let's do it for the sake of tidiness. */ if (StandbyMode) DisownLatch(&XLogCtl->recoveryWakeupLatch); |