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

Commit 7cd8a8a

Browse files
authored
Merge pull request #5654 from magento/small-changes
Small changes
2 parents b7c726e + b09b62c commit 7cd8a8a

File tree

18 files changed

+44
-38
lines changed

18 files changed

+44
-38
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ cd <DEVDOCS_REPOSITORY_ROOT_DIR>
137137
ln -s guides/v2.2/install-gde/new-doc-topic.md guides/v2.3/install-gde/new-doc-topic.md
138138
```
139139

140-
If you have an image that is identical between versions, it is should placed in `/common/images`. Please optimize images before committing them to the repository.
140+
If you have an image that is identical between versions, it should placed in `/common/images`. Please optimize images before committing them to the repository.
141141
If done correctly, the symbolic link path will start with 3 or 4 instances of `../`, as the above example shows.
142142

143143
### Remove a symbolic link

_includes/install/web/install-web_2-db.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</tr>
1111
<tr>
1212
<td>Database Server Host</td>
13-
<td>If the web server and database server are located on the same host, enter <tt>localhost</tt>. If the database server is located on a different host, enter its fully qualified hostname or IP address.</td>
13+
<td>If the web server and database server are located on the same host, enter <tt>localhost</tt>. If the database server is located on a different host, enter its fully qualified hostname or IP address. Using the IP address is preferable since using a hostname can cause additional time on each request for DNS lookup.</td>
1414
</tr>
1515
<tr>
1616
<td>Database Server Username</td>

_includes/release-notes/engcomm-2-3-3-issues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
| ------- | ------- | ------- |
33
| [airbone42](https://github.com/airbone42) | [#533](https://github.com/magento/magento2/issues/533) | [magento/graphql-ce#578](https://github.com/magento/graphql-ce/pull/578) |
44
| [tzyganu](https://github.com/tzyganu) | [#601](https://github.com/magento/magento2/issues/601) | [magento/graphql-ce#632](https://github.com/magento/graphql-ce/pull/632) |
5-
| [bsstaveley](https://github.com/bsstaveley) | [#631](https://github.com/magento/magento2/issues/631) | [magento/graphql-ce#634](https://github.com/magento/graphql-ce/pull/634) |
5+
| [pmclain](https://github.com/pmclain) | [#631](https://github.com/magento/magento2/issues/631) | [magento/graphql-ce#634](https://github.com/magento/graphql-ce/pull/634) |
66
| [dipti2jcommerce](https://github.com/dipti2jcommerce) | [#20124](https://github.com/magento/magento2/issues/20124) | [magento/magento2#20135](https://github.com/magento/magento2/pull/20135) |
77
| [WalterSmulders](https://github.com/WalterSmulders) | [#21978](https://github.com/magento/magento2/issues/21978) | [magento/magento2#22020](https://github.com/magento/magento2/pull/22020) |
88
| [afavata](https://github.com/afavata) | [#22045](https://github.com/magento/magento2/issues/22045) | [magento/magento2#22260](https://github.com/magento/magento2/pull/22260) |

guides/v2.2/advanced-reporting/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ To avoid system overload during its prime time, you can set the preferable time
2828

2929
## Extensibility
3030

31-
Though the Analytics module provides API, it is used specifically to interchange data with the MBI. We do not recommend to extend the advanced reporting functionality in this version.
31+
Though the Analytics module provides an API, it is used specifically to interchange data with the MBI. We do not recommend to extend the advanced reporting functionality in this version.
3232

3333
{:.ref-header}
3434
Related topics

guides/v2.2/architecture/archi_perspectives/service_layer.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ However, if the client code uses the interface definition only, no class change
7373
{:.ref-header}
7474
Related topics
7575

76-
[Architectural diagrams]({{page.baseurl}}/architecture/archi_perspectives/arch_diagrams.html)
77-
[Architectural layers overview]({{page.baseurl}}/architecture/archi_perspectives/ALayers_intro.html)
76+
* [Architectural diagrams]({{page.baseurl}}/architecture/archi_perspectives/arch_diagrams.html)
77+
* [Architectural layers overview]({{page.baseurl}}/architecture/archi_perspectives/ALayers_intro.html)
78+
7879
[catalog-api]: {{ site.mage2bloburl }}/{{ page.guide_version }}/app/code/Magento/Customer/Api
7980
[catalog-api-data]: {{ site.mage2bloburl }}/{{ page.guide_version }}/app/code/Magento/Customer/Api/Data

guides/v2.2/architecture/frontend_custom_strategies.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@ Magento supplies a default [theme](https://glossary.magento.com/theme) and a Les
6767

6868
### Replace PHTML template files
6969

70-
In addition to extending the default CSS, you can generate different HTML [markup](https://glossary.magento.com/markup). For example, you might need to add a missing CSS class name, or an add an extra `<div>` tag to achieve some visual effect. You might also need to tweak some [JavaScript](https://glossary.magento.com/javascript/) to cope with different HTML markup. This change is more demanding than simply extending Magento CSS, but is still within the grasp of smaller projects and leaner teams.
70+
In addition to extending the default CSS, you can generate different HTML [markup](https://glossary.magento.com/markup). For example, you might need to add a missing CSS class name, or add an extra `<div>` tag to achieve some visual effect. You might also need to tweak some [JavaScript](https://glossary.magento.com/javascript/) to cope with different HTML markup. This change is more demanding than simply extending Magento CSS, but is still within the grasp of smaller projects and leaner teams.
7171

7272
### Replace Magento-Provided CSS
7373

74-
Rather than edit the default CSS provided by Magento, you might decide to replace all the default storefront CSS code with your own. This strategy avoids tying a project to the Magento-provided CSS, but puts a greater burden on project development and integration. It also allows use of different CSS tools or technologies not provided with Magento. Partners who build their own set of CSS libraries could reuse these libraries on different customer projects. (These unique CSS libraries may help differentiate a partner from others in the market.)
74+
Rather than edit the default CSS provided by Magento, you might decide to replace all the default storefront CSS code with your own. This strategy avoids tying a project to the Magento-provided CSS, but puts a greater burden on project development and integration. It also allows the use of different CSS tools or technologies not provided with Magento. Partners who build their own set of CSS libraries could reuse these libraries on different customer projects. (These unique CSS libraries may help differentiate a partner from others in the market.)
7575

7676
In addition to replacing CSS files, you might need to replace small amounts of HTML and JavaScript.
7777

@@ -105,4 +105,4 @@ Related topics
105105
[Overview of UI components]: {{page.baseurl}}/ui_comp_guide/bk-ui_comps.html
106106
[Frontend Developer Guide]: {{page.baseurl}}/frontend-dev-guide/bk-frontend-dev-guide.html
107107
[JavaScript Developer Guide]: {{page.baseurl}}/javascript-dev-guide/bk-javascript-dev-guide.html
108-
[Magento Marketplace]: https://marketplace.magento.com/
108+
[Magento Marketplace]: https://marketplace.magento.com/

guides/v2.2/architecture/storefront_customization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ Magento supplies a default [theme](https://glossary.magento.com/theme) and a Les
1818

1919
### Replace PHTML template files
2020

21-
In addition to extending the default CSS, you can generate different HTML [markup](https://glossary.magento.com/markup). For example, you might need to add a missing CSS class name, or an add an extra `<div>` tag to achieve some visual effect. You might also need to tweak some [JavaScript](https://glossary.magento.com/javascript) to cope with different HTML markup. This change is more demanding than simply extending Magento CSS, but is still within the grasp of smaller projects and leaner teams.
21+
In addition to extending the default CSS, you can generate different HTML [markup](https://glossary.magento.com/markup). For example, you might need to add a missing CSS class name, or add an extra `<div>` tag to achieve some visual effect. You might also need to tweak some [JavaScript](https://glossary.magento.com/javascript) to cope with different HTML markup. This change is more demanding than simply extending Magento CSS, but is still within the grasp of smaller projects and leaner teams.
2222

2323
### Replace Magento-Provided CSS
2424

25-
Rather than edit the default CSS provided by Magento, you might decide to replace all the default storefront CSS code with your own. This strategy avoids tying a project to the Magento-provided CSS, but puts a greater burden on project development and integration. It also allows use of different CSS tools or technologies not provided with Magento. Partners who build their own set of CSS libraries could reuse these libraries on different customer projects. (These unique CSS libraries may help differentiate a partner from others in the market.)
25+
Rather than edit the default CSS provided by Magento, you might decide to replace all the default storefront CSS code with your own. This strategy avoids tying a project to the Magento-provided CSS, but puts a greater burden on project development and integration. It also allows the use of different CSS tools or technologies not provided with Magento. Partners who build their own set of CSS libraries could reuse these libraries on different customer projects. (These unique CSS libraries may help differentiate a partner from others in the market.)
2626

2727
In addition to replacing CSS files, you might need to replace small amounts of HTML and JavaScript.
2828

guides/v2.2/cloud/reference/discover-deploy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ For detailed instructions, see [Build and deploy full steps](#steps).
7676

7777
### Phase 1: Code and configuration validation {#cloud-deploy-over-phases-conf}
7878

79-
When you initially set up a project from a template, we retrieve the code from the [the {{site.data.var.ee}} template](https://github.com/magento/magento-cloud). This code repo is cloned to your project as the `master` branch.
79+
When you initially set up a project from a template, we retrieve the code from [the {{site.data.var.ee}} template](https://github.com/magento/magento-cloud). This code repo is cloned to your project as the `master` branch.
8080

8181
- **For Starter**`master` branch is your Production environment.
8282
- **For Pro**`master` begins as origin branch for the Integration environment.

guides/v2.2/install-gde/basics/basics_software.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ functional_areas:
1818

1919
The full list of software is listed in [System Requirements]({{ page.baseurl }}/install-gde/system-requirements.html) but here are the essentials:
2020

21-
* Web server for providing access to web pages - Currently, we've documented [Apache](http://en.wikipedia.org/wiki/Apache_HTTP_Server){:target="_blank"} and plan to document other web servers in the near future.
21+
* Web server for providing access to web pages - Currently, we have documented [Apache](http://en.wikipedia.org/wiki/Apache_HTTP_Server){:target="_blank"} and [NGINX](https://en.wikipedia.org/wiki/Nginx){:target="_blank"}.
2222

2323
* Database management system for long-term data storage and retrieval - We support [MySQL](http://dev.mysql.com/doc/refman/4.1/en/what-is-mysql.html){:target="_blank"}.
2424

@@ -27,4 +27,4 @@ The full list of software is listed in [System Requirements]({{ page.baseurl }}/
2727
For more information, see the [PHP manual](http://php.net/manual/en/intro-whatis.php){:target="_blank"} or the [PHP Wikipedia page](http://en.wikipedia.org/wiki/PHP){:target="_blank"}.
2828

2929
{: .bs-callout-info }
30-
If you use a hosting provider, they might already have installed this software. Contact them if you're not sure.
30+
If you use a hosting provider, they might already have installed this software. Contact them if you are not sure.

guides/v2.2/install-gde/system-requirements-tech.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ For more information, see [Required PHP settings]({{ page.baseurl }}/install-gde
6969

7070
* A valid [security certificate](https://glossary.magento.com/security-certificate) is required for HTTPS.
7171
* Self-signed SSL certificates are not supported.
72-
* Transport Layer Security (TLS) requirement - PayPal and `repo.magento.com` both require TLS 1.1 or later:
72+
* Transport Layer Security (TLS) requirement - PayPal and `repo.magento.com` both require TLS 1.2 or later:
7373

7474
* [More information about PayPal]({{ page.baseurl }}/install-gde/system-requirements_tls1-2.html)
7575

0 commit comments

Comments
 (0)