From ff45689c46fb8f48f707afe766698f653f16c288 Mon Sep 17 00:00:00 2001 From: Reinout van Rees Date: Mon, 14 Dec 2015 14:26:37 +0100 Subject: [PATCH] Changed three "these/those" into explicit names The original version was unclear to me. It sounded like Go channels were the ones that are network-transparent even though we mean to say that Django's are. So I simply removed these/those and used "Go channels" and "Django channels" explicitly. (But *do* check whether I got it right! :-) ) --- docs/concepts.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/concepts.rst b/docs/concepts.rst index 2b90fcf..53a4904 100644 --- a/docs/concepts.rst +++ b/docs/concepts.rst @@ -46,8 +46,9 @@ The channels have capacity, so a load of producers can write lots of messages into a channel with no consumers and then a consumer can come along later and will start getting served those queued messages. -If you've used `channels in Go `_, these are reasonably similar to those. The key -difference is that these channels are network-transparent; the implementations +If you've used `channels in Go `_: Go channels +are reasonably similar to Django ones. The key difference is that +Django channels channels are network-transparent; the implementations of channels we provide are all accessible across a network to consumers and producers running in different processes or on different machines.