Skip to content

Commit 628a0bc

Browse files
committed
chore: fix typos
1 parent 88fc4a4 commit 628a0bc

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ The relevant maintainer for a pull request is assigned in 3 steps:
139139

140140
* Step 1: Determine the subdirectory affected by the pull request. This might be src/registry, docs/source/api, or any other part of the repo.
141141

142-
* Step 2: Find the MAINTAINERS file which affects this directory. If the directory itself does not have a MAINTAINERS file, work your way up the the repo hierarchy until you find one.
142+
* Step 2: Find the MAINTAINERS file which affects this directory. If the directory itself does not have a MAINTAINERS file, work your way up the repo hierarchy until you find one.
143143

144144
* Step 3: The first maintainer listed is the primary maintainer who is assigned the Pull Request. The primary maintainer can reassign a Pull Request to other listed maintainers.
145145

docs/source/2021-news.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Changelog - 2021
1616
- fix tornado usage with latest versions of Django
1717
- add support for python -m gunicorn
1818
- fix systemd socket activation example
19-
- allows to set wsgi application in configg file using `wsgi_app`
19+
- allows to set wsgi application in config file using `wsgi_app`
2020
- document `--timeout = 0`
2121
- always close a connection when the number of requests exceeds the max requests
2222
- Disable keepalive during graceful shutdown

docs/source/2023-news.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Changelog - 2023
55
22.0.0 - TBDTBDTBD
66
==================
77

8-
- fix numerous security vulnerabilites in HTTP parser (closing some request smuggling vectors)
8+
- fix numerous security vulnerabilities in HTTP parser (closing some request smuggling vectors)
99
- parsing additional requests is no longer attempted past unsupported request framing
1010
- on HTTP versions < 1.1 support for chunked transfer is refused (only used in exploits)
1111
- requests conflicting configured or passed SCRIPT_NAME now produce a verbose error
@@ -17,7 +17,7 @@ Changelog - 2023
1717
- minimum version is Python 3.7
1818
- the limitations on valid characters in the HTTP method have been bounded to Internet Standards
1919
- requests specifying unsupported transfer coding (order) are refused by default (rare)
20-
- HTTP methods are no longer casefolded by default (IANA method registry contains none affacted)
20+
- HTTP methods are no longer casefolded by default (IANA method registry contains none affected)
2121
- HTTP methods containing the number sign (#) are no longer accepted by default (rare)
2222
- HTTP versions < 1.0 or >= 2.0 are no longer accepted by default (rare, only HTTP/1.1 is supported)
2323
- HTTP versions consisting of multiple digits or containing a prefix/suffix are no longer accepted
@@ -46,9 +46,9 @@ This is fixing the bad file description error.
4646
- support python 3.11
4747
- fix gevent and eventlet workers
4848
- fix threads support (gththread): improve performance and unblock requests
49-
- SSL: noaw use SSLContext object
49+
- SSL: now use SSLContext object
5050
- HTTP parser: miscellaneous fixes
51-
- remove unecessary setuid calls
51+
- remove unnecessary setuid calls
5252
- fix testing
5353
- improve logging
5454
- miscellaneous fixes to core engine

docs/source/news.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This is fixing the bad file description error.
2929
- fix threads support (gththread): improve performance and unblock requests
3030
- SSL: noaw use SSLContext object
3131
- HTTP parser: miscellaneous fixes
32-
- remove unecessary setuid calls
32+
- remove unnecessary setuid calls
3333
- fix testing
3434
- improve logging
3535
- miscellaneous fixes to core engine

docs/source/settings.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ H protocol
210210
s status
211211
B response length
212212
b response length or ``'-'`` (CLF format)
213-
f referer
213+
f referrer
214214
a user agent
215215
T request time in seconds
216216
M request time in milliseconds
@@ -569,7 +569,7 @@ Whether client certificate is required (see stdlib ssl module's)
569569
=========== ===========================
570570
--cert-reqs Description
571571
=========== ===========================
572-
`0` no client veirifcation
572+
`0` no client verification
573573
`1` ssl.CERT_OPTIONAL
574574
`2` ssl.CERT_REQUIRED
575575
=========== ===========================

gunicorn/arbiter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def setup(self, app):
109109
in sorted(self.cfg.settings.items(),
110110
key=lambda setting: setting[1]))))
111111

112-
# set enviroment' variables
112+
# set environment' variables
113113
if self.cfg.env:
114114
for k, v in self.cfg.env.items():
115115
os.environ[k] = v

gunicorn/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2233,7 +2233,7 @@ class PasteGlobalConf(Setting):
22332233
22342234
The option can be specified multiple times.
22352235
2236-
The variables are passed to the the PasteDeploy entrypoint. Example::
2236+
The variables are passed to the PasteDeploy entrypoint. Example::
22372237
22382238
$ gunicorn -b 127.0.0.1:8000 --paste development.ini --paste-global FOO=1 --paste-global BAR=2
22392239

gunicorn/http/message.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def set_body_reader(self):
166166
content_length = value
167167
elif name == "TRANSFER-ENCODING":
168168
if value.lower() == "chunked":
169-
# DANGER: transer codings stack, and stacked chunking is never intended
169+
# DANGER: transfer codings stack, and stacked chunking is never intended
170170
if chunked:
171171
raise InvalidHeader("TRANSFER-ENCODING", req=self)
172172
chunked = True

0 commit comments

Comments
 (0)