From 5264e7a416bb563d5f226e7b99c5b82c906b3f4d Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Mon, 13 Jul 2015 23:43:51 -0700 Subject: [PATCH] Typo --- docs/concepts.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts.rst b/docs/concepts.rst index 8dfb7b6..4c16092 100644 --- a/docs/concepts.rst +++ b/docs/concepts.rst @@ -99,7 +99,7 @@ A view takes a request and returns a response; a consumer takes a channel message and can write out zero to many other channel messages. Now, let's make a channel for requests (called ``django.wsgi.request``), -and a channel per client for responses (e.g. ``django.wsgi.respsonse.o4F2h2Fd``), +and a channel per client for responses (e.g. ``django.wsgi.response.o4F2h2Fd``), with the response channel a property (``send_channel``) of the request message. Suddenly, a view is merely another example of a consumer::