summaryrefslogtreecommitdiff
path: root/include/haproxy/queue.h
diff options
context:
space:
mode:
authorIlya Shipitsin <chipitsine@gmail.com>2022-10-29 09:34:32 +0500
committerWilly Tarreau <w@1wt.eu>2022-10-30 17:17:56 +0100
commit4a689dad0398b103949d7ffee3476dfcaf21e6fc (patch)
treecec45b78e5dee9a99590c47bd4f0bdde93fd4697 /include/haproxy/queue.h
parent5526f922af178dc4b33b9c6e141e7524d7c5539d (diff)
downloadhaproxy-4a689dad0398b103949d7ffee3476dfcaf21e6fc.tar.gz
CLEANUP: assorted typo fixes in the code and comments
This is 32nd iteration of typo fixes
Diffstat (limited to 'include/haproxy/queue.h')
-rw-r--r--include/haproxy/queue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/haproxy/queue.h b/include/haproxy/queue.h
index 847896545..e77370cdd 100644
--- a/include/haproxy/queue.h
+++ b/include/haproxy/queue.h
@@ -45,7 +45,7 @@ void pendconn_unlink(struct pendconn *p);
* function to be used by default when unsure. Do not call it with server
* or proxy locks held however. Warning: this is called from stream_free()
* which may run concurrently with pendconn_process_next_strm() which can be
- * dequeing the entry. The function must not return until the pendconn is
+ * dequeuing the entry. The function must not return until the pendconn is
* guaranteed not to be known, which means that we must check its presence
* in the tree under the queue's lock so that penconn_process_next_strm()
* finishes before we return in case it would have grabbed this pendconn. See