Skip to content

Commit 1f6e5f7

Browse files
chipitsinewtarreau
authored andcommitted
CLEANUP: assorted typo fixes in the code and comments
This is 43rd iteration of typo fixes
1 parent e1cae42 commit 1f6e5f7

File tree

15 files changed

+25
-25
lines changed

15 files changed

+25
-25
lines changed

admin/release-estimator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ the queue.
1212

1313

1414
## Installation
15-
It can be easilly installed with venv from python3
15+
It can be easily installed with venv from python3
1616

1717

1818
$ python3 -m venv ~/.local/venvs/stable-bot/

doc/configuration.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14748,7 +14748,7 @@ dgram-drop
1474814748
X | - | - | - | - | - | - | -
1474914749

1475014750
This silently ignores the reception of a QUIC initial packet which otherwise
14751-
whould have resulted in a new QUIC connection instantiation and its SSL
14751+
would have resulted in a new QUIC connection instantiation and its SSL
1475214752
handshake execution.
1475314753

1475414754

@@ -18280,7 +18280,7 @@ sni <expression>
1828018280
checks, see the "check-sni" directive for more details.
1828118281

1828218282
By default, the SNI is assigned to the connection name for "http-reuse",
18283-
unless overriden by the "pool-conn-name" server keyword.
18283+
unless overridden by the "pool-conn-name" server keyword.
1828418284

1828518285
source <addr>[:<pl>[-<ph>]] [usesrc { <addr2>[:<port2>] | client | clientip } ]
1828618286
source <addr>[:<port>] [usesrc { <addr2>[:<port2>] | hdr_ip(<hdr>[,<occ>]) } ]
@@ -21586,7 +21586,7 @@ queue([<backend>]) : integer
2158621586

2158721587
quic_enabled : boolean
2158821588
Return true when the support for QUIC transport protocol was compiled and
21589-
if this procotol was not disabled by "no-quic" global option. See also "no-quic"
21589+
if this protocol was not disabled by "no-quic" global option. See also "no-quic"
2159021590
global option.
2159121591

2159221592
rand([<range>]) : integer
@@ -22047,7 +22047,7 @@ bc_srv_queue : integer
2204722047
bc_settings_streams_limit : integer
2204822048
Returns the maximum number of streams allowed on the backend connection. For
2204922049
TCP and HTTP/1.1 connections, it is always 1. For other protocols, it depends
22050-
on the settings negociated with the server.
22050+
on the settings negotiated with the server.
2205122051

2205222052
be_id : integer
2205322053
Returns an integer containing the current backend's id. It can be used in
@@ -22370,7 +22370,7 @@ fc_src_port : integer
2237022370
fc_settings_streams_limit : integer
2237122371
Returns the maximum number of streams allowed on the frontend connection. For
2237222372
TCP and HTTP/1.1 connections, it is always 1. For other protocols, it depends
22373-
on the settings negociated with the client.
22373+
on the settings negotiated with the client.
2237422374

2237522375
fc_unacked : integer
2237622376
Returns the unacked counter measured by the kernel for the client connection.
@@ -26290,7 +26290,7 @@ quoted ("Q") and escaped ("E") string formats.
2629026290
Special alias "%OG" may be used to retrieve the log origin (when / where
2629126291
the log was generated) in a human readable format. It is particularly useful
2629226292
with "option logasap" because some log variables or sample fetches could report
26293-
incomplete values or behave diffently depending on when / where the logformat
26293+
incomplete values or behave differently depending on when / where the logformat
2629426294
expression was evaluated. Possible values are:
2629526295
- "sess_error": log was generated during session error handling
2629626296
- "sess_killed": log was generated during session abortion (killed
@@ -27609,7 +27609,7 @@ SPOE communicates with external components using an in-house binary protocol,
2760927609
the Stream Processing Offload Protocol (SPOP).
2761027610

2761127611
When the SPOE is used on a stream, a dedicated stream is spawned to handle the
27612-
communcation with the external component. The main stream is the parent stream
27612+
communication with the external component. The main stream is the parent stream
2761327613
of this "SPOE" stream. It means it is possible to retrieve variables of the
2761427614
main stream from the "SPOE" stream. See section 2.8 about variables for
2761527615
details.

doc/management.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2566,7 +2566,7 @@ set table <table> ptr <ptr> [data.<data_type> <value>]*
25662566
<ptr> is written in the form 0xffff and must correspond to the address
25672567
returned by a previous "show table" command. Matching an entry using its
25682568
pointer may be relevant if the entry cannot be matched using the key due to
2569-
empty key or imcompatible characters on the cli.
2569+
empty key or incompatible characters on the cli.
25702570

25712571
set timeout cli <delay>
25722572
Change the CLI interface timeout for current connection. This can be useful

include/haproxy/channel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ static inline int channel_htx_recv_limit(const struct channel *chn, const struct
694694
unsigned int transit;
695695
int reserve;
696696

697-
/* return zeor if not allocated */
697+
/* return zero if not allocated */
698698
if (!htx->size)
699699
return 0;
700700

include/haproxy/fcgi-app-t.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ struct fcgi_rule_conf {
5656
struct list list;
5757
};
5858

59-
/* parameter rule evaluated during request analyzis */
59+
/* parameter rule evaluated during request analysis */
6060
struct fcgi_rule {
6161
enum fcgi_rule_type type;
6262
struct ist name; /* name of the parameter/header */
@@ -65,14 +65,14 @@ struct fcgi_rule {
6565
struct list list;
6666
};
6767

68-
/* parameter rule to set/unset a param at the end of the analyzis */
68+
/* parameter rule to set/unset a param at the end of the analysis */
6969
struct fcgi_param_rule {
7070
struct ist name;
7171
struct lf_expr *value; /* if empty , unset the parameter */
7272
struct ebpt_node node;
7373
};
7474

75-
/* header rule to pass/hide a header at the end of the analyzis */
75+
/* header rule to pass/hide a header at the end of the analysis */
7676
struct fcgi_hdr_rule {
7777
struct ist name;
7878
int pass; /* 1 to pass the header, 0 Otherwise */

include/haproxy/mux_spop-t.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ enum spop_conn_st {
9696
SPOP_CS_AGENT_HELLO, /* HELLO frame sent, waiting for agent HELLO frame to define the connection settings */
9797
SPOP_CS_FRAME_H, /* HELLO handshake finished, waiting for a frame header */
9898
SPOP_CS_FRAME_P, /* Frame header received, waiting for a frame data */
99-
SPOP_CS_ERROR, /* send DISCONNECT frame to be able ti close the conneciton */
99+
SPOP_CS_ERROR, /* send DISCONNECT frame to be able ti close the connection */
100100
SPOP_CS_CLOSING, /* DISCONNECT frame sent, waiting for the agent DISCONNECT frame before closing */
101101
SPOP_CS_CLOSED, /* Agent DISCONNECT frame received and close the connection ASAP */
102102
SPOP_CS_ENTRIES

include/haproxy/stconn.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ static inline void se_need_remote_conn(struct sedesc *se)
392392

393393
/* The application layer tells the stream connector that it just got the input
394394
* buffer it was waiting for. A read activity is reported. The SC_FL_HAVE_BUFF
395-
* flag is set and held until sc_used_buff() is called to indicatee it was
395+
* flag is set and held until sc_used_buff() is called to indicate it was
396396
* used.
397397
*/
398398
static inline void sc_have_buff(struct stconn *sc)

include/haproxy/stick_table.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ static inline int __stksess_kill_if_expired(struct stktable *t, struct stksess *
216216
}
217217

218218
/*
219-
* Decrease the refcount of a stksess and relase it if the refcount falls to 0
219+
* Decrease the refcount of a stksess and release it if the refcount falls to 0
220220
* _AND_ if the session expired. Note,, the refcount is always decremented.
221221
*
222222
* This function locks the corresponding table shard to proceed. When this

include/import/ebistree.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ __ebis_insert(struct eb_root *root, struct ebpt_node *new)
319319

320320
/* We need the common higher bits between new->key and old->key.
321321
* This number of bits is already in <bit>.
322-
* NOTE: we can't get here whit bit < 0 since we found a dup !
322+
* NOTE: we can't get here with bit < 0 since we found a dup !
323323
*/
324324
new->node.bit = bit;
325325
root->b[side] = eb_dotag(&new->node.branches, EB_NODE);

include/import/ebsttree.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ __ebst_insert(struct eb_root *root, struct ebmb_node *new)
313313

314314
/* We need the common higher bits between new->key and old->key.
315315
* This number of bits is already in <bit>.
316-
* NOTE: we can't get here whit bit < 0 since we found a dup !
316+
* NOTE: we can't get here with bit < 0 since we found a dup !
317317
*/
318318
new->node.bit = bit;
319319
root->b[side] = eb_dotag(&new->node.branches, EB_NODE);

0 commit comments

Comments
 (0)