diff --git a/docs/site/docs/consumer-clients.md b/docs/site/docs/consumer-clients.md
index b4f597d5341ad61b584d84482f4afd182c9f349e..9413999f3ebf2b5e527240f24baeef11ca652f30 100644
--- a/docs/site/docs/consumer-clients.md
+++ b/docs/site/docs/consumer-clients.md
@@ -14,12 +14,12 @@ Consumer API is available for C++ and Python and has the following main function
     - A beamtime token is used for access control
 - If needed (mainly for 'get_next_XX' operations), create a consumer group that allows to process messages independently from other groups
 - Receive messages  from a specific stream (you can read more [here](data-in-asapo) about data in ASAPO)
-    - 'get_next' to receive process messages one after another without need to know message indexes
+    - `get_next` to receive process messages one after another without need to know message indexes
         - Consumer API returns a message with index 1, then 2, ... as they were set by producer.
         - This also works in parallel so that the payload is distributed within multiple consumers within same consumer group or between threads of a single consumer instance. In parallel case order of indexes of the messages is not determined.
         - Optionaly it can return messages in their arrival order (return next available message). It is useful for the fast data-processing agnostic to message index.
-    - 'get_last' to receive last available message - for e.g. live visualisation
-    - 'get_by_id' to get message by index, providing random access
+    - `get_last` to receive last available message - for e.g. live visualisation
+    - `get_by_id` to get message by index, providing random access
 - Make queries based on metadata contained in a message - returns all messages in a stream with specific metadata. A subset of SQL language is used
 
 
diff --git a/docs/site/docs/producer-clients.md b/docs/site/docs/producer-clients.md
index 1d8dd4f2b7bfa0ca0d345c7529c9576950d85b98..a606bdd39d1ebec9d01b83a020fea3206a0d4d2e 100644
--- a/docs/site/docs/producer-clients.md
+++ b/docs/site/docs/producer-clients.md
@@ -2,7 +2,7 @@
 title: Producer Clients
 ---
 
-Producer client (or producer) is a part of a distributed streaming system that is responsible for creating data streams (i.e. ingesting data in the system). It is usually a user (beamline scientist, detector developer, physicist, ... ) responsibility to develop a client for specific beamline, detector or experiment using ASAPO Producer API and ASAPO's responsibility to make sure data is transferred and saved an in efficient and reliable way.
+Producer client (or producer) is a part of a distributed streaming system that is responsible for creating data streams (i.e. ingesting data in the system). It is usually a user's (beamline scientist, detector developer, physicist, ... ) responsibility to develop a client for specific beamline, detector or experiment using ASAPO Producer API and ASAPO's responsibility to make sure data is transferred and saved an in efficient and reliable way.
 
 ![Docusaurus](/img/producer-clients.png)