Skip to content

Commit 60d0474

Browse files
authored
Merge pull request #2720 from kianmeng/fix-typos
Fix typos
2 parents 76f8da2 + cf3619f commit 60d0474

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,4 @@ OTHER DEALINGS IN THE SOFTWARE.
8686
util/unlink.py
8787
--------------
8888

89-
backport frop python3 Lib/test/support.py
89+
backport from python3 Lib/test/support.py

docs/site/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ <h1>Project Management</h1>
118118
<li><a href="https://github.com/benoitc/gunicorn/projects/4">Forum</a></li>
119119
<li><a href="https://github.com/benoitc/gunicorn/projects/3">Mailing list</a>
120120
</ul>
121-
<p>Project maintenance guidelines are avaible on the <a href="https://github.com/benoitc/gunicorn/wiki/Project-management">wiki</a></p>
121+
<p>Project maintenance guidelines are available on the <a href="https://github.com/benoitc/gunicorn/wiki/Project-management">wiki</a></p>
122122

123123
<h1>Irc</h1>
124124
<p>The Gunicorn channel is on the <a href="http://freenode.net/">Freenode</a> IRC

docs/source/2012-news.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Changelog - 2012
7575
- fix tornado.wsgi.WSGIApplication calling error
7676

7777
- **breaking change**: take the control on graceful reload back.
78-
graceful can't be overrided anymore using the on_reload function.
78+
graceful can't be overridden anymore using the on_reload function.
7979

8080
0.14.3 / 2012-05-15
8181
-------------------

docs/source/2013-news.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,18 @@ Changelog - 2013
3838
- fix: give the initial global_conf to paster application
3939
- fix: fix 'Expect: 100-continue' support on Python 3
4040

41-
New versionning:
41+
New versioning:
4242
++++++++++++++++
4343

44-
With this release, the versionning of Gunicorn is changing. Gunicorn is
44+
With this release, the versioning of Gunicorn is changing. Gunicorn is
4545
stable since a long time and there is no point to release a "1.0" now.
4646
It should have been done since a long time. 0.17 really meant it was the
4747
17th stable version. From the beginning we have only 2 kind of
4848
releases:
4949

5050
major release: releases with major changes or huge features added
5151
services releases: fixes and minor features added So from now we will
52-
apply the following versionning ``<major>.<service>``. For example ``17.5`` is a
52+
apply the following versioning ``<major>.<service>``. For example ``17.5`` is a
5353
service release.
5454

5555
0.17.4 / 2013-04-24

docs/source/2014-news.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ AioHttp worker
7171
Async worker
7272
++++++++++++
7373

74-
- fix :issue:`790`: StopIteration shouldn't be catched at this level.
74+
- fix :issue:`790`: StopIteration shouldn't be caught at this level.
7575

7676

7777
Logging
@@ -180,7 +180,7 @@ core
180180
- add: syslog logging can now be done to a unix socket
181181
- fix logging: don't try to redirect stdout/stderr to the logfile.
182182
- fix logging: don't propagate log
183-
- improve logging: file option can be overriden by the gunicorn options
183+
- improve logging: file option can be overridden by the gunicorn options
184184
`--error-logfile` and `--access-logfile` if they are given.
185185
- fix: don't override SERVER_* by the Host header
186186
- fix: handle_error

docs/source/2019-news.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Changelog - 2019
9090
- Simplify Paste Deployment documentation
9191
- Fix root logging: root and logger are same level.
9292
- Fixed typo in ssl_version documentation
93-
- Documented systemd deployement unit examples
93+
- Documented systemd deployment unit examples
9494
- Added systemd sd_notify support
9595
- Fixed typo in gthread.py
9696
- Added `tornado <https://www.tornadoweb.org/>`_ 5 and 6 support

docs/source/community.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ for 3 different purposes:
1515
* `Mailing list <https://github.com/benoitc/gunicorn/projects/3>`_ : Discussion of Gunicorn development, new features
1616
and project management.
1717

18-
Project maintenance guidelines are avaible on the `wiki <https://github.com/benoitc/gunicorn/wiki/Project-management>`_
18+
Project maintenance guidelines are available on the `wiki <https://github.com/benoitc/gunicorn/wiki/Project-management>`_
1919
.
2020

2121
IRC

gunicorn/glogging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def log(self, lvl, msg, *args, **kwargs):
275275
self.error_log.log(lvl, msg, *args, **kwargs)
276276

277277
def atoms(self, resp, req, environ, request_time):
278-
""" Gets atoms for log formating.
278+
""" Gets atoms for log formatting.
279279
"""
280280
status = resp.status
281281
if isinstance(status, str):

gunicorn/workers/workertmp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def __init__(self, cfg):
2828
if cfg.uid != os.geteuid() or cfg.gid != os.getegid():
2929
util.chown(name, cfg.uid, cfg.gid)
3030

31-
# unlink the file so we don't leak tempory files
31+
# unlink the file so we don't leak temporary files
3232
try:
3333
if not IS_CYGWIN:
3434
util.unlink(name)

0 commit comments

Comments
 (0)