diff options
author | Robert Haas <rhaas@postgresql.org> | 2015-10-30 10:35:33 +0100 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2015-10-30 10:38:39 +0100 |
commit | 352e3cbf8ea10206f504fb0f1ffb2541d7284f5a (patch) | |
tree | 6c8414d92074f803641194bd84e1fc520c01dc8d | |
parent | 626f9be8db11521745711aa3b29e304ab5902a9c (diff) |
Fix typo in bgworker.c
-rw-r--r-- | src/backend/postmaster/bgworker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/postmaster/bgworker.c b/src/backend/postmaster/bgworker.c index 87347c3f3ea..b6327831e7d 100644 --- a/src/backend/postmaster/bgworker.c +++ b/src/backend/postmaster/bgworker.c @@ -845,7 +845,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. |