Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ take control of the ``runserver`` command. See :doc:`introduction` for more.
Installing the latest development version
-----------------------------------------

To install the latest version of Channels, clone the repo, change to the repo,
change to the repo directory, and pip install it into your current virtual
To install the latest version of Channels, clone the repo, change to the repo directory,
and pip install it into your current virtual
environment:

.. code-block:: sh
Expand Down
2 changes: 1 addition & 1 deletion docs/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ into one bigger app that represents your project using routing:

application = URLRouter([
path("chat/admin/", AdminChatConsumer.as_asgi()),
path("chat/", PublicChatConsumer.as_asgi(),
path("chat/", PublicChatConsumer.as_asgi()),
])

Channels is not just built around the world of HTTP and WebSockets - it also
Expand Down
Loading