From 952fdf1af6f723add7a99ef61023453144e039e8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl>
Date: Wed, 13 Nov 2024 13:41:51 +0100
Subject: [PATCH] docs fix

---
 docs/tutorials/send_and_receive.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/tutorials/send_and_receive.rst b/docs/tutorials/send_and_receive.rst
index f8d2fe7..f8e9724 100644
--- a/docs/tutorials/send_and_receive.rst
+++ b/docs/tutorials/send_and_receive.rst
@@ -45,7 +45,7 @@ Now it's time to send a message:
 .. code-block:: python
 
     from coolamqp.objects import Message
-    c.publish(Message(b'my bag of bytes'), confirm=True).result()
+    c.publish(Message(b'my bag of bytes'), routing_key='my-named-queue', confirm=True).result()
 
 Without the confirm flag, publish would not return the future.
 
-- 
GitLab