Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 1f34d64

Browse files
authored
Merge pull request #8521 from magento/hg-typos
Address typos
2 parents f811cb3 + 9ec85a8 commit 1f34d64

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/cloud/project/user-admin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ To enable TFA on your {{site.data.var.ece}} user account:
259259

260260
- Log in with your username and password.
261261

262-
- When prompted, enter the two-factor authentication code for the magento.cloufrom the authenticator application on your mobile device
262+
- When prompted, enter the two-factor authentication code for the `accounts.magento.cloud` entry from the authenticator application on your mobile device.
263263

264264
### Manage TFA configuration and recovery codes
265265

src/guides/v2.3/extension-dev-guide/cache/page-caching/private-content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Customer sections was designed to cache private data in browser storage. This me
6767
The are some exception cases:
6868
6969
- Store and website switching, after any of these action customer section `cart` will be updated.
70-
- Customer cart lifetime option `section_data_lifetime` which is 60 minutes by default. After scheduled time passe section `cart` will be updated.
70+
- Customer cart lifetime option `section_data_lifetime` which is 60 minutes by default. After scheduled time passes, section `cart` will be updated.
7171
7272
{: .bs-callout-info }
7373
Product information will not be simultaneously updated in customer cart (product name, price, product enabled/disabled). Information will be updated after what comes first: `section_data_lifetime` time passed or an action that the update cart triggered.

src/guides/v2.3/extension-dev-guide/message-queues/async-message-queue-config-files.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ When using the Magento message queue, four configuration files in your module mu
1616

1717
More information can be found in [Configure message queues]({{ page.baseurl }}/extension-dev-guide/message-queues/config-mq.html).
1818

19-
Asynchronous and Bulk APIs are built on top of the usual REST API and use the Magento Message Queue Framework for processing messages. To easy development efforts, the Asynchronous API pre-generates the following configuration files:
19+
Asynchronous and Bulk APIs are built on top of the usual REST API and use the Magento Message Queue Framework for processing messages. To ease development efforts, the Asynchronous API pre-generates the following configuration files:
2020

2121
* communication.xml
2222
* queue_publisher.xml
2323

24-
and provides the `queue_topology.xml` and `queue_consumer.xml` file within the `Magento/WebapiAsync` module.
24+
and provides the `queue_topology.xml` and `queue_consumer.xml` files within the `Magento/WebapiAsync` module.
2525

2626
### communication.xml
2727

2828
Information about the auto-generation of `communication.xml` can be found in [Topics in Asynchronous API]({{ page.baseurl }}/extension-dev-guide/message-queues/async-topics.html)
2929

3030
### queue_publisher.xml
3131

32-
`queue_publisher.xml` is generated by the `\Magento\WebapiAsync\Code\Generator\Config\RemoteServiceReader\Publisher` class, which implements `\Magento\Framework\Config\ReaderInterface` and is injected into the `\Magento\Framework\MessageQueue\Publisher\Config\CompositeReader` constructor argument in the main `di.xml` file.
32+
The `queue_publisher.xml` file is generated by the `\Magento\WebapiAsync\Code\Generator\Config\RemoteServiceReader\Publisher` class, which implements `\Magento\Framework\Config\ReaderInterface` and is injected into the `\Magento\Framework\MessageQueue\Publisher\Config\CompositeReader` constructor argument in the main `di.xml` file.
3333

3434
```xml
3535
<type name="Magento\Framework\MessageQueue\Publisher\Config\CompositeReader">
@@ -57,7 +57,7 @@ The asynchronous/bulk API has one defined consumer which processes all asynchron
5757

5858
### queue_topology.xml
5959

60-
The nessage queue topology configuration links all auto-generated topic names with prefix `async.` to the `magento` exchange and defines the queue named `async.operations.all` as the destination for all messages.
60+
The message queue topology configuration links all auto-generated topic names with prefix `async.` to the `magento` exchange and defines the queue named `async.operations.all` as the destination for all messages.
6161

6262
```xml
6363
<exchange name="magento" type="topic" connection="amqp">

0 commit comments

Comments
 (0)