diff --git a/README.md b/README.md
index 466686fc45dc9b27a5bd0bf1de3cde56a64d5f8a..3c26d8d1753458814544a03f9e43acf7f0a43752 100644
--- a/README.md
+++ b/README.md
@@ -76,9 +76,9 @@ except pikatasks.RPCError as e:
 With AMQ, messages first arrive to `exchanges`, then broker distributes them to to `queues` using `routing keys`. If you are not sure what it is all about, read [this tutorial](https://www.rabbitmq.com/tutorials/tutorial-four-python.html) first and further RabbitMQ documentation if needed.
 
 ##### Queues and Tasks:
-  * ***pikatasks*** requires a separate queue for each task.
+  * Pikatasks requires a separate queue for each task.
   * `queue name == task name`
-  * You need to create these queues by yourself.
+  * You need to create these queues by yourself (e.g. using the RabbitMQ Management Plugin web interface).
 
 ##### Developent setup:
 You are done after creating queues for each of your tasks. Don't need anything else for the development. Note: exchange `amq.default` will be used.