summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2014-05-21 16:49:21 +0100
committerAsk Solem <ask@celeryproject.org>2014-05-30 14:33:00 +0100
commitc37a005caaed4a9a53b2bd87443b36f9797c826c (patch)
tree1073985b1c0853ea46a815ea0f0d3816d28653a3
parent40d074af95cd6f48efca619c772a009a0008607c (diff)
downloadkombu-c37a005caaed4a9a53b2bd87443b36f9797c826c.tar.gz
Fixes typo in comment
-rw-r--r--kombu/transport/virtual/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kombu/transport/virtual/__init__.py b/kombu/transport/virtual/__init__.py
index cb844de9..ddcca471 100644
--- a/kombu/transport/virtual/__init__.py
+++ b/kombu/transport/virtual/__init__.py
@@ -520,7 +520,7 @@ class Channel(AbstractChannel, base.StdChannel):
return self.typeof(exchange).deliver(
message, exchange, routing_key, **kwargs
)
- # anon exchange: routing_key is the destintaion queue
+ # anon exchange: routing_key is the destination queue
return self._put(routing_key, message, **kwargs)
def basic_consume(self, queue, no_ack, callback, consumer_tag, **kwargs):