aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2015-10-30 10:35:33 +0100
committerRobert Haas <rhaas@postgresql.org>2015-10-30 10:35:33 +0100
commitc6baec92fc48387da8164d50f5699a7162267718 (patch)
tree938603beb1990da53f78208e92bae76e68f5ad3f /src
parent23937a4253490bf0c06aef0b8658270176f52de4 (diff)
downloadpostgresql-c6baec92fc48387da8164d50f5699a7162267718.tar.gz
postgresql-c6baec92fc48387da8164d50f5699a7162267718.zip
Fix typo in bgworker.c
Diffstat (limited to 'src')
-rw-r--r--src/backend/postmaster/bgworker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/postmaster/bgworker.c b/src/backend/postmaster/bgworker.c
index c38d486a20e..cf505d6230c 100644
--- a/src/backend/postmaster/bgworker.c
+++ b/src/backend/postmaster/bgworker.c
@@ -828,7 +828,7 @@ RegisterDynamicBackgroundWorker(BackgroundWorker *worker,
/*
* We can't register dynamic background workers from the postmaster. If
* this is a standalone backend, we're the only process and can't start
- * any more. In a multi-process environement, it might be theoretically
+ * any more. In a multi-process environment, it might be theoretically
* possible, but we don't currently support it due to locking
* considerations; see comments on the BackgroundWorkerSlot data
* structure.