summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera2011-02-02 00:07:42 +0000
committerAlvaro Herrera2011-05-12 12:52:56 +0000
commitc6eb5740b3c352fb10bf61bb4465332ae6b28ab1 (patch)
treef3f05f4835b650bcfcfe4b030c281aa23b918b86
parente05b866447899211a0c2df31bf0671faac4fc3e5 (diff)
Fix assorted typos
-rw-r--r--contrib/pg_standby/pg_standby.c4
-rw-r--r--src/backend/access/transam/clog.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/contrib/pg_standby/pg_standby.c b/contrib/pg_standby/pg_standby.c
index 4e38d9b6b2..7204b447da 100644
--- a/contrib/pg_standby/pg_standby.c
+++ b/contrib/pg_standby/pg_standby.c
@@ -119,7 +119,7 @@ struct stat stat_buf;
* accessible directory. If you want to make other assumptions,
* such as using a vendor-specific archive and access API, these
* routines are the ones you'll need to change. You're
- * enouraged to submit any changes to [email protected]
+ * encouraged to submit any changes to [email protected]
* or personally to the current maintainer. Those changes may be
* folded in to later versions of this program.
*/
@@ -252,7 +252,7 @@ CustomizableCleanupPriorWALFiles(void)
/*
* Assume it's OK to keep failing. The failure situation may change
* over time, so we'd rather keep going on the main processing than
- * fail because we couldnt clean up yet.
+ * fail because we couldn't clean up yet.
*/
if ((xldir = opendir(archiveLocation)) != NULL)
{
diff --git a/src/backend/access/transam/clog.c b/src/backend/access/transam/clog.c
index df0f15679f..d3de8934ee 100644
--- a/src/backend/access/transam/clog.c
+++ b/src/backend/access/transam/clog.c
@@ -431,8 +431,8 @@ CLOGShmemInit(void)
/*
* This func must be called ONCE on system install. It creates
* the initial CLOG segment. (The CLOG directory is assumed to
- * have been created by the initdb shell script, and CLOGShmemInit
- * must have been called already.)
+ * have been created by initdb, and CLOGShmemInit must have been
+ * called already.)
*/
void
BootStrapCLOG(void)