diff options
author | Noah Misch | 2024-01-08 19:39:56 +0000 |
---|---|---|
committer | Noah Misch | 2024-01-08 19:39:56 +0000 |
commit | 196799d6765706697ff9417ae85929085774b8f4 (patch) | |
tree | ddf0a754d1d4ecf021ba115f7c20b67c3f9a0dd7 | |
parent | 6d94cc6ca1b775335f58527ece6c12d74ec41bde (diff) |
Fix missing word in comment.
-rw-r--r-- | src/include/libpq/libpq-be-fe-helpers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/libpq/libpq-be-fe-helpers.h b/src/include/libpq/libpq-be-fe-helpers.h index 41d04afab5a..6a7b023ad73 100644 --- a/src/include/libpq/libpq-be-fe-helpers.h +++ b/src/include/libpq/libpq-be-fe-helpers.h @@ -5,7 +5,7 @@ * * Code built directly into the backend is not allowed to link to libpq * directly. Extension code is allowed to use libpq however. However, libpq - * used in extensions has to be careful to block inside libpq, otherwise + * used in extensions has to be careful not to block inside libpq, otherwise * interrupts will not be processed, leading to issues like unresolvable * deadlocks. Backend code also needs to take care to acquire/release an * external fd for the connection, otherwise fd.c's accounting of fd's is |