Skip to content

Commit 90087f9

Browse files
ENGCOM-3304: Fix spelling in AsynchronousOperations and Backend #18894
- Merge Pull Request #18894 from hugovk/magento2:spelling - Merged commits: 1. d2f691d
2 parents 77af5d6 + d2f691d commit 90087f9

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ To get detailed information about changes in Magento 2.1.0, please visit [Magent
157157
* Updated styles
158158
* Sample Data:
159159
* Improved sample data installation UX
160-
* Updated sample data with Product Heros, color swatches, MAP and rule based product relations
160+
* Updated sample data with Product Heroes, color swatches, MAP and rule based product relations
161161
* Improved sample data upgrade flow
162162
* Added the ability to log errors and set the error flag during sample data installation
163163
* Various improvements:
@@ -2284,7 +2284,7 @@ Tests:
22842284
* Fixed an issue where no results were found for Coupons reports
22852285
* Fixed an issue with incremental Qty setting
22862286
* Fixed an issue with allowing importing of negative weight values
2287-
* Fixed an issue with Inventory - Only X left Treshold being not dependent on Qty for Item's Status to Become Out of Stock
2287+
* Fixed an issue with Inventory - Only X left Threshold being not dependent on Qty for Item's Status to Become Out of Stock
22882288
* Fixed an issue where the "Catalog Search Index index was rebuilt." message was displayed when reindexing the Catalog Search index
22892289
* Search module:
22902290
* Integrated the Search library to the advanced search functionality
@@ -2706,7 +2706,7 @@ Tests:
27062706
* Ability to support extensible service data objects
27072707
* No Code Duplication in Root Templates
27082708
* Fixed bugs:
2709-
* Persistance session application. Loggin out the customer
2709+
* Persistence session application. Logging out the customer
27102710
* Placing the order with two terms and conditions
27112711
* Saving of custom option by service catalogProductCustomOptionsWriteServiceV1
27122712
* Placing the order on frontend if enter in the street address line 1 and 2 255 symbols
@@ -2965,7 +2965,7 @@ Tests:
29652965
* Fixed an issue with incorrect items label for the cases when there are more than one item in the category
29662966
* Fixed an issue when configurable product was out of stock in Google Shopping while being in stock in the Magento backend
29672967
* Fixed an issue when swipe gesture in menu widget was not supported on mobile
2968-
* Fixed an issue when it was impossible to enter alpha-numeric zip code on the stage of estimating shipping and tax rates
2968+
* Fixed an issue when it was impossible to enter alphanumeric zip code on the stage of estimating shipping and tax rates
29692969
* Fixed an issue when custom price was not applied when editing an order
29702970
* Fixed an issue when items were not returned to stock after unsuccessful order was placed
29712971
* Fixed an issue when error message appeared "Cannot save the credit memo” while creating credit memo

app/code/Magento/AsynchronousOperations/Controller/Adminhtml/Bulk/Details.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
namespace Magento\AsynchronousOperations\Controller\Adminhtml\Bulk;
77

88
/**
9-
* Class View Opertion Details Controller
9+
* Class View Operation Details Controller
1010
*/
1111
class Details extends \Magento\Backend\App\Action
1212
{

app/code/Magento/Backend/App/Request/BackendValidator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public function validate(
166166
ActionInterface $action
167167
): void {
168168
if ($action instanceof AbstractAction) {
169-
//Abstract Action has build-in validation.
169+
//Abstract Action has built-in validation.
170170
if (!$action->_processUrlKeys()) {
171171
throw new InvalidRequestException($action->getResponse());
172172
}

app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Theme.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function getHtml()
5454
}
5555

5656
/**
57-
* Retrieve options setted in column.
57+
* Retrieve options set in column.
5858
* Or load if options was not set.
5959
*
6060
* @return array

app/code/Magento/Backend/Block/Widget/Tabs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ public function getTabContent($tab)
468468
}
469469

470470
/**
471-
* Mark tabs as dependant of each other
471+
* Mark tabs as dependent of each other
472472
* Arbitrary number of tabs can be specified, but at least two
473473
*
474474
* @param string $tabOneId

app/code/Magento/Backend/Console/Command/AbstractCacheCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
abstract class AbstractCacheCommand extends Command
1818
{
1919
/**
20-
* Input option bootsrap
20+
* Input option bootstrap
2121
*/
2222
const INPUT_KEY_BOOTSTRAP = 'bootstrap';
2323

app/code/Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,6 @@ public function testGetMenuGenericExceptionIsNotLogged()
168168
} catch (\Exception $e) {
169169
return;
170170
}
171-
$this->fail("Generic \Exception was not throwed");
171+
$this->fail("Generic \Exception was not thrown");
172172
}
173173
}

app/code/Magento/Backend/etc/adminhtml/system.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
<field id="*/*/template_hints_storefront">1</field>
130130
<field id="*/*/template_hints_storefront_show_with_parameter">1</field>
131131
</depends>
132-
<comment>Add the following paramater to the URL to show template hints ?templatehints=[parameter_value]</comment>
132+
<comment>Add the following parameter to the URL to show template hints ?templatehints=[parameter_value]</comment>
133133
</field>
134134
<field id="template_hints_admin" translate="label" type="select" sortOrder="20" showInDefault="1" showInWebsite="0" showInStore="0">
135135
<label>Enabled Template Path Hints for Admin</label>

0 commit comments

Comments
 (0)