From b8528fe026b18976b5d5b4fcb066a8a55def3375 Mon Sep 17 00:00:00 2001 From: Daniel Gustafsson Date: Mon, 25 Mar 2024 14:49:17 +0100 Subject: [PATCH] Fix typo in comment Spotted while reviewing a patch changing things around this area. --- src/interfaces/libpq/fe-cancel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;