Skip to content

Commit cecccb0

Browse files
🔃 [EngCom] Public Pull Requests - 2.1-develop
Accepted Public Pull Requests: - #15237: [Backport] Changed constructor typo in Javascript class (by @VitaliyBoyko) - #15235: [Backport] Fixed double space typo (by @VitaliyBoyko)
2 parents 71d4467 + 218f204 commit cecccb0

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

app/code/Magento/Paypal/i18n/en_US.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ expires,expires
348348
here,here
349349
" to learn more."," to learn more."
350350
"Important: ","Important: "
351-
"To use PayPal Payments Advanced, you must configure your PayPal Payments Advanced account on the PayPal website.","To use PayPal Payments Advanced, you must configure your PayPal Payments Advanced account on the PayPal website."
351+
"To use PayPal Payments Advanced, you must configure your PayPal Payments Advanced account on the PayPal website.","To use PayPal Payments Advanced, you must configure your PayPal Payments Advanced account on the PayPal website."
352352
"Once you log into your PayPal Advanced account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below","Once you log into your PayPal Advanced account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below"
353353
"To use PayPal Payflow Link, you must configure your PayPal Payflow Link account on the PayPal website.","To use PayPal Payflow Link, you must configure your PayPal Payflow Link account on the PayPal website."
354354
"Once you log into your PayPal Payflow Link account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below","Once you log into your PayPal Payflow Link account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below"

app/code/Magento/Paypal/view/adminhtml/templates/system/config/payflowlink/advanced.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<div class="payflow-settings-notice">
1313
<p>
1414
<strong class="important-label"><?php echo $block->escapeHtml(__('Important: ')); ?></strong>
15-
<?php echo $block->escapeHtml(__('To use PayPal Payments Advanced, you must configure your PayPal Payments Advanced account on the PayPal website.')); ?>
15+
<?php echo $block->escapeHtml(__('To use PayPal Payments Advanced, you must configure your PayPal Payments Advanced account on the PayPal website.')); ?>
1616
<?php echo $block->escapeHtml(__('Once you log into your PayPal Advanced account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below')); ?>
1717
</p>
1818
<ul class="options-list">

app/code/Magento/Ui/view/base/web/js/lib/core/class.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ define([
2727
* Creates constructor function which allows
2828
* initialization without usage of a 'new' operator.
2929
*
30-
* @param {Object} protoProps - Prototypal propeties of a new consturctor.
31-
* @param {Function} consturctor
32-
* @returns {Function} Created consturctor.
30+
* @param {Object} protoProps - Prototypal properties of a new constructor.
31+
* @param {Function} constructor
32+
* @returns {Function} Created constructor.
3333
*/
34-
function createConstructor(protoProps, consturctor) {
35-
var UiClass = consturctor;
34+
function createConstructor(protoProps, constructor) {
35+
var UiClass = constructor;
3636

3737
if (!UiClass) {
3838

@@ -61,7 +61,7 @@ define([
6161
Class = createConstructor({
6262

6363
/**
64-
* Entry point to the initialization of consturctors' instance.
64+
* Entry point to the initialization of constructors' instance.
6565
*
6666
* @param {Object} [options={}]
6767
* @returns {Class} Chainable.

0 commit comments

Comments
 (0)