Correct spelling mistakes.

This commit is contained in:
Edward Betts 2018-02-19 12:25:52 +00:00 committed by Berker Peksag
parent 8e479865d5
commit fc64a43ec6
4 changed files with 5 additions and 5 deletions

View File

@ -118,7 +118,7 @@
<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 maintainance guidelines are avaible on the <a href="https://github.com/benoitc/gunicorn/wiki/Project-management">wiki</a></p>
<p>Project maintenance guidelines are avaible 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

View File

@ -845,7 +845,7 @@ class InputDirectory:
def __init__(self, attributes, base_url):
self._path = None # The directory
self._url = None # The URL equivelant
self._url = None # The URL equivalent
self._default_file = None
if not ValidateAttributes('DIRECTORY', attributes, ('path', 'url',

View File

@ -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 maintainance guidelines are avaible on the `wiki <https://github.com/benoitc/gunicorn/wiki/Project-management>`_
Project maintenance guidelines are avaible on the `wiki <https://github.com/benoitc/gunicorn/wiki/Project-management>`_
.
IRC

View File

@ -191,7 +191,7 @@ if sys.platform.startswith("win"):
# required when contention occurs.
timeout = 0.001
while timeout < 1.0:
# Note we are only testing for the existance of the file(s) in
# Note we are only testing for the existence of the file(s) in
# the contents of the directory regardless of any security or
# access rights. If we have made it this far, we have sufficient
# permissions to do that much using Python's equivalent of the
@ -415,7 +415,7 @@ def daemonize(enable_stdio_inheritance=False):
os.umask(0o22)
# In both the following any file descriptors above stdin
# stdout and stderr are left untouched. The inheritence
# stdout and stderr are left untouched. The inheritance
# option simply allows one to have output go to a file
# specified by way of shell redirection when not wanting
# to use --error-log option.