Hello,

yet another spelling fix.

Ilya
From b3eeb7f08e1904825571406f5f4bbd7892ac2983 Mon Sep 17 00:00:00 2001
From: Ilya Shipitsin <chipits...@gmail.com>
Date: Wed, 7 Dec 2022 09:46:19 +0500
Subject: [PATCH] CLEANUP: assorted typo fixes in the code and comments

This is 34th iteration of typo fixes
---
 doc/configuration.txt           | 2 +-
 doc/internals/api/event_hdl.txt | 2 +-
 doc/lua-api/index.rst           | 2 +-
 doc/peers-v2.0.txt              | 2 +-
 doc/peers.txt                   | 2 +-
 include/haproxy/event_hdl-t.h   | 2 +-
 src/quic_conn.c                 | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/doc/configuration.txt b/doc/configuration.txt
index c6cb49f00..c45f0b4b6 100644
--- a/doc/configuration.txt
+++ b/doc/configuration.txt
@@ -3104,7 +3104,7 @@ tune.quic.socket-owner { listener | connection }
   The "listener" value indicates that QUIC transfers will occur on the shared
   listener socket. This option can be a good compromise for small traffic as it
   allows to reduce FD consumption. However, performance won't be optimal due to
-  a higher CPU usage if listeners are shared accross a lot of threads or a
+  a higher CPU usage if listeners are shared across a lot of threads or a
   large number of QUIC connections can be used simultaneously.
 
 tune.rcvbuf.client <number>
diff --git a/doc/internals/api/event_hdl.txt b/doc/internals/api/event_hdl.txt
index fdcc97369..4414bc495 100644
--- a/doc/internals/api/event_hdl.txt
+++ b/doc/internals/api/event_hdl.txt
@@ -874,7 +874,7 @@ If EVENT_HDL_ASYNC_EVENT_DATA is not big enough to store 
your new
 event family struct, a compilation assert triggered by EVENT_HDL_CB_DATA
 will occur. In addition to this, an extra runtime BUG_ON will make
 sure the condition is met when publishing the event.
-The goal here is to force haproxy to fail explicitely so you know that
+The goal here is to force haproxy to fail explicitly so you know that
 something must be done on your side.
 
 3.1 PUBLISHING AN EVENT
diff --git a/doc/lua-api/index.rst b/doc/lua-api/index.rst
index 2f2744ffa..4b6e5af55 100644
--- a/doc/lua-api/index.rst
+++ b/doc/lua-api/index.rst
@@ -364,7 +364,7 @@ Core class
   Returns HAProxy core information. We can find information like the uptime,
   the pid, memory pool usage, tasks number, ...
 
-  These informations are also returned by the management socket via the command
+  This information is also returned by the management socket via the command
   "show info". See the management socket documentation for more information
   about the content of these variables.
 
diff --git a/doc/peers-v2.0.txt b/doc/peers-v2.0.txt
index 5f3aa1183..051cb6094 100644
--- a/doc/peers-v2.0.txt
+++ b/doc/peers-v2.0.txt
@@ -154,7 +154,7 @@ encoded integer value |
 
 - for other key type
 
-The value length is annonced in table definition message
+The value length is announced in table definition message
 0 ....................
 value
 
diff --git a/doc/peers.txt b/doc/peers.txt
index a5da40f3c..7ce2fcb46 100644
--- a/doc/peers.txt
+++ b/doc/peers.txt
@@ -252,7 +252,7 @@
        |      4     | Heartbeat message.                                     |
        +------------+--------------------------------------------------------+
 
-     About hearbeat messages: a peer sends heartbeat messages to peers it is
+     About heartbeat messages: a peer sends heartbeat messages to peers it is
      connected to after periods of 3s of inactivity (i.e. when there is no
      stick-table to synchronize for 3s). After a successful peer protocol
      handshake between two peers, if one of them does not send any other peer
diff --git a/include/haproxy/event_hdl-t.h b/include/haproxy/event_hdl-t.h
index 3cd19624d..7ce9a1a1a 100644
--- a/include/haproxy/event_hdl-t.h
+++ b/include/haproxy/event_hdl-t.h
@@ -226,7 +226,7 @@ struct event_hdl_sub {
 /*     ---------------------------------------        */
 
 /* user defined event types are listed here
- * please reflect any change in theses macros in the subtype map
+ * please reflect any change in these macros in the subtype map
  * defined below that is used to perform string to event type and
  * event type to string conversions
  */
diff --git a/src/quic_conn.c b/src/quic_conn.c
index 0fc2f5eb9..8b09d5780 100644
--- a/src/quic_conn.c
+++ b/src/quic_conn.c
@@ -1435,7 +1435,7 @@ static int quic_packet_encrypt(unsigned char *payload, 
size_t payload_len,
 /* Decrypt <pkt> packet using encryption level <qel> for <qc> connection.
  * Decryption is done in place in packet buffer.
  *
- * Returns 1 on sucess else 0.
+ * Returns 1 on success else 0.
  */
 static int qc_pkt_decrypt(struct quic_conn *qc, struct quic_enc_level *qel,
                           struct quic_rx_packet *pkt)
-- 
2.35.3.windows.1

Reply via email to