Skip to content

Commit

Permalink
Merge pull request #2720 from kianmeng/fix-typos
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
javabrett committed Jan 17, 2022
2 parents 76f8da2 + cf3619f commit 60d0474
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ OTHER DEALINGS IN THE SOFTWARE.
util/unlink.py
--------------

backport frop python3 Lib/test/support.py
backport from python3 Lib/test/support.py
2 changes: 1 addition & 1 deletion docs/site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ <h1>Project Management</h1>
<li><a href="https://github.com/benoitc/gunicorn/projects/4">Forum</a></li>
<li><a href="https://github.com/benoitc/gunicorn/projects/3">Mailing list</a>
</ul>
<p>Project maintenance guidelines are avaible on the <a href="https://github.com/benoitc/gunicorn/wiki/Project-management">wiki</a></p>
<p>Project maintenance guidelines are available on the <a href="https://github.com/benoitc/gunicorn/wiki/Project-management">wiki</a></p>

<h1>Irc</h1>
<p>The Gunicorn channel is on the <a href="http://freenode.net/">Freenode</a> IRC
Expand Down
2 changes: 1 addition & 1 deletion docs/source/2012-news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Changelog - 2012
- fix tornado.wsgi.WSGIApplication calling error

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

0.14.3 / 2012-05-15
-------------------
Expand Down
6 changes: 3 additions & 3 deletions docs/source/2013-news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,18 @@ Changelog - 2013
- fix: give the initial global_conf to paster application
- fix: fix 'Expect: 100-continue' support on Python 3

New versionning:
New versioning:
++++++++++++++++

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

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

0.17.4 / 2013-04-24
Expand Down
4 changes: 2 additions & 2 deletions docs/source/2014-news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ AioHttp worker
Async worker
++++++++++++

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


Logging
Expand Down Expand Up @@ -180,7 +180,7 @@ core
- add: syslog logging can now be done to a unix socket
- fix logging: don't try to redirect stdout/stderr to the logfile.
- fix logging: don't propagate log
- improve logging: file option can be overriden by the gunicorn options
- improve logging: file option can be overridden by the gunicorn options
`--error-logfile` and `--access-logfile` if they are given.
- fix: don't override SERVER_* by the Host header
- fix: handle_error
Expand Down
2 changes: 1 addition & 1 deletion docs/source/2019-news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Changelog - 2019
- Simplify Paste Deployment documentation
- Fix root logging: root and logger are same level.
- Fixed typo in ssl_version documentation
- Documented systemd deployement unit examples
- Documented systemd deployment unit examples
- Added systemd sd_notify support
- Fixed typo in gthread.py
- Added `tornado <https://www.tornadoweb.org/>`_ 5 and 6 support
Expand Down
2 changes: 1 addition & 1 deletion docs/source/community.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ for 3 different purposes:
* `Mailing list <https://github.com/benoitc/gunicorn/projects/3>`_ : Discussion of Gunicorn development, new features
and project management.

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

IRC
Expand Down
2 changes: 1 addition & 1 deletion gunicorn/glogging.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def log(self, lvl, msg, *args, **kwargs):
self.error_log.log(lvl, msg, *args, **kwargs)

def atoms(self, resp, req, environ, request_time):
""" Gets atoms for log formating.
""" Gets atoms for log formatting.
"""
status = resp.status
if isinstance(status, str):
Expand Down
2 changes: 1 addition & 1 deletion gunicorn/workers/workertmp.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self, cfg):
if cfg.uid != os.geteuid() or cfg.gid != os.getegid():
util.chown(name, cfg.uid, cfg.gid)

# unlink the file so we don't leak tempory files
# unlink the file so we don't leak temporary files
try:
if not IS_CYGWIN:
util.unlink(name)
Expand Down

0 comments on commit 60d0474

Please sign in to comment.