From: Robert Haas Date: Fri, 30 Oct 2015 09:35:33 +0000 (+0100) Subject: Fix typo in bgworker.c X-Git-Tag: REL9_5_BETA2~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7852f73bdfe6022c9b23abc950fec63d0d1f4582;p=thirdparty%2Fpostgresql.git Fix typo in bgworker.c --- diff --git a/src/backend/postmaster/bgworker.c b/src/backend/postmaster/bgworker.c index 68c9505809e..220e599cca2 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.