Skip to content

Commit

Permalink
Correct spelling mistakes (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardBetts authored and miguelgrinberg committed Jun 18, 2019
1 parent 3457e4c commit a440498
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/client.rst
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ Here is the ``asyncio`` version::
Note that this function is not a coroutine, since it does not wait for the
background function to end, but the background function is.

The ``sleep()`` method is a second convenince function that is provided for
The ``sleep()`` method is a second convenience function that is provided for
the benefit of applications working with background tasks of their own::

eio.sleep(2)
Expand Down
4 changes: 2 additions & 2 deletions docs/server.rst
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ Here is the ``asyncio`` version::
Note that this function is not a coroutine, since it does not wait for the
background function to end, but the background function is.

The ``sleep()`` method is a second convenince function that is provided for
The ``sleep()`` method is a second convenience function that is provided for
the benefit of applications working with background tasks of their own::

eio.sleep(2)
Expand Down Expand Up @@ -410,7 +410,7 @@ The Sanic application is then executed in the usual manner::
app.run()

It has been reported that the CORS support provided by the Sanic extension
`sanic-cors <https://github.com/ashleysommer/sanic-cors>`_ is incomaptible with
`sanic-cors <https://github.com/ashleysommer/sanic-cors>`_ is incompatible with
this package's own support for this protocol. To disable CORS support in this
package and let Sanic take full control, initialize the server as follows::

Expand Down
2 changes: 1 addition & 1 deletion examples/server/aiohttp/static/engine.io.js
Original file line number Diff line number Diff line change
Expand Up @@ -2791,7 +2791,7 @@ exports.skips = [];
/**
* Map of special "%n" handling functions, for the debug "format" argument.
*
* Valid key names are a single, lowercased letter, i.e. "n".
* Valid key names are a single, lowercase letter, i.e. "n".
*/

exports.formatters = {};
Expand Down
2 changes: 1 addition & 1 deletion examples/server/asgi/static/engine.io.js
Original file line number Diff line number Diff line change
Expand Up @@ -2791,7 +2791,7 @@ exports.skips = [];
/**
* Map of special "%n" handling functions, for the debug "format" argument.
*
* Valid key names are a single, lowercased letter, i.e. "n".
* Valid key names are a single, lowercase letter, i.e. "n".
*/

exports.formatters = {};
Expand Down
2 changes: 1 addition & 1 deletion examples/server/sanic/static/engine.io.js
Original file line number Diff line number Diff line change
Expand Up @@ -2791,7 +2791,7 @@ exports.skips = [];
/**
* Map of special "%n" handling functions, for the debug "format" argument.
*
* Valid key names are a single, lowercased letter, i.e. "n".
* Valid key names are a single, lowercase letter, i.e. "n".
*/

exports.formatters = {};
Expand Down
2 changes: 1 addition & 1 deletion examples/server/tornado/static/engine.io.js
Original file line number Diff line number Diff line change
Expand Up @@ -2791,7 +2791,7 @@ exports.skips = [];
/**
* Map of special "%n" handling functions, for the debug "format" argument.
*
* Valid key names are a single, lowercased letter, i.e. "n".
* Valid key names are a single, lowercase letter, i.e. "n".
*/

exports.formatters = {};
Expand Down
2 changes: 1 addition & 1 deletion examples/server/wsgi/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ You can then access the application from your web browser at
``http://localhost:5000``.

Near the top of the ``simple.py`` and ``latency.py`` source files there is a
``async_mode`` variable that can be edited to swich to the other asynchornous
``async_mode`` variable that can be edited to switch to the other asynchronous
modes that perform much better than the threading mode. Accepted values for
``async_mode`` are ``'threading'``, ``'eventlet'`` and ``'gevent'``.

Expand Down
2 changes: 1 addition & 1 deletion examples/server/wsgi/static/engine.io.js
Original file line number Diff line number Diff line change
Expand Up @@ -2791,7 +2791,7 @@ exports.skips = [];
/**
* Map of special "%n" handling functions, for the debug "format" argument.
*
* Valid key names are a single, lowercased letter, i.e. "n".
* Valid key names are a single, lowercase letter, i.e. "n".
*/

exports.formatters = {};
Expand Down

0 comments on commit a440498

Please sign in to comment.