Skip to content

Commit cc7267e

Browse files
committed
Typos fix
1 parent 302bd07 commit cc7267e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/discounts/configure_discounts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Discounts feature uses [[= product_name_base =]] Messenger to reindex discounts
3636
This way changes are processed efficiently without slowing down the system and disrupting the user experience.
3737
3838
When triggered periodically, the `ibexa:discounts:reindex` command identifies discounts that require re-indexing, ensuring catalog prices always remain up-to-date.
39-
If there are edits to discounts that should result in changed product catalog prices, messages are dispatched to an [[= product_name_base =]] Messenger queue and consumed by a background worker.
39+
If there are edits to discounts that should result in changed product catalog prices, messages are dispatched to the [[= product_name_base =]] Messenger's queue and consumed by a background worker.
4040
The worker passes the messages to the handler, which then starts the re-indexing process at the most convenient moment.
4141

4242
To use discount re-indexing in the background:
@@ -49,7 +49,7 @@ To use discount re-indexing in the background:
4949
php bin/console messenger:consume ibexa.messenger.transport --bus=ibexa.messenger.bus
5050
```
5151

52-
3\. Use a scheduler of your choice, to periodically run the following command:
52+
3\. Use a scheduler of your choice to periodically run the following command:
5353

5454
``` bash
5555
php bin/console ibexa:discounts:reindex

docs/discounts/discounts_guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ You can also limit the usage per customer:
116116
### Discount re-indexing
117117

118118
Discounts affect the prices shown in the product catalog.
119-
When a discount is created, updated, or expires, the product catalog must be re-indexed to ensure that search results and product listings display the correct price.
119+
When a discount is created, updated, or expires, the product catalog must be re-indexed to ensure that the search results and product listings display correct prices.
120120

121121
To prevent performance disruptions which could occur if re-indexing occurred immediately, [[= product_name =]] uses the [Ibexa Messenger](background_tasks.md)'s background queue to process re-indexing tasks in the background.
122122

docs/infrastructure_and_maintenance/background_tasks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The process works as follows:
2424
2. The message is wrapped in an envelope, which may contain additional metadata, called stamps, for example, `DeduplicateStamp`.
2525
3. The message is placed in the transport queue.
2626
It can be a Doctrine table, a Redis queue, and so on.
27-
4. A worker process ontinuously reads messages from the queue, pulls them into the default bus `ibexa.messenger.bus` and assigns them to the right haandler.
27+
4. A worker process continuously reads messages from the queue, pulls them into the default bus `ibexa.messenger.bus` and assigns them to the right handler.
2828
5. Handler service processes the message (executes the command).
2929
You can register multiple handlers for different jobs.
3030

@@ -54,7 +54,7 @@ ibexa_messenger:
5454
5555
!!! note "Supported transports"
5656
57-
You can define different transports, such as Redis or PostgeSQL.
57+
You can define different transports, such as Redis or PostgreSQL.
5858
For more information, see [Symfony Messenger documentation](https://symfony.com/doc/current/messenger.html#transports-async-queued-messages) or [Symfony Messenger tutorial](https://symfonycasts.com/screencast/messenger/install#installing-messenger).
5959
6060
### Start worker

0 commit comments

Comments
 (0)