Skip to content

Commit 2486738

Browse files
minho42carltongibson
authored andcommitted
Fixed some typos in docs. (#1308)
1 parent 3af5f11 commit 2486738

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

CHANGELOG.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ https://channels.readthedocs.io/en/latest/releases
168168
* ``enforce_ordering`` now works correctly with the new-style process-specific
169169
channels
170170

171-
* ASGI channel layer versions are now explicitly checked for version compatability
171+
* ASGI channel layer versions are now explicitly checked for version compatibility
172172

173173

174174
1.1.2 (2017-04-01)

docs/deploying.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ Alternative Web Servers
145145
There are also alternative `ASGI <http://asgi.readthedocs.io>`_ servers
146146
that you can use for serving Channels.
147147

148-
To some degree ASGI web servers should be interchangable, they should all have
148+
To some degree ASGI web servers should be interchangeable, they should all have
149149
the same basic functionality in terms of serving HTTP and WebSocket requests.
150150

151151
Aspects where servers may differ are in their configuration and defaults,
@@ -167,7 +167,7 @@ Nginx/Supervisor (Ubuntu)
167167
~~~~~~~~~~~~~~~~~~~~~~~~~
168168

169169
This example sets up a Django site on an Ubuntu server, using Nginx as the
170-
main webserver and supervisord to run and manage Daphne.
170+
main webserver and supervisord to run and manage Daphne.
171171

172172
First, install Nginx and Supervisor::
173173

docs/releases/1.0.0.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Delay Server
110110

111111
A built-in delay server, launched with `manage.py rundelay`, now ships if you
112112
wish to use it. It needs some extra initial setup and uses a database for
113-
persistance; see :doc:`/delay` for more information.
113+
persistence; see :doc:`/delay` for more information.
114114

115115

116116
Minor Changes

docs/releases/1.1.3.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Minor Changes & Bugfixes
1717
* ``enforce_ordering`` now works correctly with the new-style process-specific
1818
channels
1919

20-
* ASGI channel layer versions are now explicitly checked for version compatability
20+
* ASGI channel layer versions are now explicitly checked for version compatibility
2121

2222

2323
Backwards Incompatible Changes

docs/support.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Apologies if this comes off as harsh, but please understand that open source mai
2222
of time, and if we answered all the issues and support requests there would be no time left to actually work on the code
2323
itself!
2424

25-
Making bugs reproducable
25+
Making bugs reproducible
2626
------------------------
2727

2828
If you're struggling with an issue that only happens in a production environment and can't get it to reproduce locally
@@ -65,7 +65,7 @@ General support request
6565
Sorry, but we can't help out with general support requests here - the issue tracker is for reproduceable bugs and
6666
concrete feature requests only! Please see our support documentation (http://channels.readthedocs.io/en/latest/support.html)
6767
for more information about where you can get general help.
68-
68+
6969
Non-specific bug/"It doesn't work!"
7070
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7171

@@ -75,11 +75,11 @@ Non-specific bug/"It doesn't work!"
7575
environment, as they may not be problems in the project itself. Our support documentation
7676
(http://channels.readthedocs.io/en/latest/support.html) has details about how to take this sort of problem, diagnose it,
7777
and either fix it yourself, get help from the community, or make it into an actionable issue that we can handle.
78-
78+
7979
Sorry we have to direct you away like this, but we get a lot of support requests every week. If you can reduce the problem
8080
to a clear set of steps to reproduce or an example project that fails in a fresh environment, please re-open the ticket
8181
with that information.
82-
82+
8383
Problem in application code
8484
~~~~~~~~~~~~~~~~~~~~~~~~~~~
8585

docs/topics/channel_layers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ to make a basic task queue or to offload tasks - read more in
1111

1212
Channels does not ship with any channel layers you can use out of the box, as
1313
each one depends on a different way of transporting data across a network. We
14-
would recommend you use ``channels_redis``, which is an offical Django-maintained
14+
would recommend you use ``channels_redis``, which is an official Django-maintained
1515
layer that uses Redis as a transport and what we'll focus the examples on here.
1616

1717
.. note::

docs/topics/routing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ more protocol-specific routing underneath there.
2222

2323
Channels expects you to be able to define a single *root application*, and
2424
provide the path to it as the ``ASGI_APPLICATION`` setting (think of this as
25-
being analagous to the ``ROOT_URLCONF`` setting in Django). There's no fixed
25+
being analogous to the ``ROOT_URLCONF`` setting in Django). There's no fixed
2626
rule as to where you need to put the routing and the root application,
2727
but we recommend putting them in a project-level file called ``routing.py``,
2828
next to ``urls.py``. You can read more about deploying Channels projects and

0 commit comments

Comments
 (0)