diff options
author | Daniel Gustafsson | 2024-03-25 13:49:17 +0000 |
---|---|---|
committer | Daniel Gustafsson | 2024-03-25 13:49:17 +0000 |
commit | b8528fe026b18976b5d5b4fcb066a8a55def3375 (patch) | |
tree | 7a0f2de15a7d492cb6a2619492964dc8e27c939c | |
parent | 68174679fea2d514e9281fddd826abaccfac5bf7 (diff) |
Fix typo in comment
Spotted while reviewing a patch changing things around this area.
-rw-r--r-- | src/interfaces/libpq/fe-cancel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/libpq/fe-cancel.c b/src/interfaces/libpq/fe-cancel.c index 6bbd126baf..954dce5431 100644 --- a/src/interfaces/libpq/fe-cancel.c +++ b/src/interfaces/libpq/fe-cancel.c @@ -98,7 +98,7 @@ PQcancelCreate(PGconn *conn) return (PGcancelConn *) cancelConn; /* - * Copy cancellation token data from the original connnection + * Copy cancellation token data from the original connection */ cancelConn->be_pid = conn->be_pid; cancelConn->be_key = conn->be_key; |