Skip to content

Commit 39c8364

Browse files
sanganinamratadmytro-ch
authored andcommitted
Removed extra added space in function comment and fixed typo mistakes.
1 parent 05456c7 commit 39c8364

File tree

2 files changed

+5
-5
lines changed
  • app
    • code/Magento/Paypal/Model/Api
    • design/frontend/Magento/blank/Magento_ProductVideo/web/css/source

2 files changed

+5
-5
lines changed

app/code/Magento/Paypal/Model/Api/Nvp.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1025,7 +1025,7 @@ public function callGetPalDetails()
10251025
}
10261026

10271027
/**
1028-
* Set Customer BillingA greement call
1028+
* Set Customer BillingAgreement call
10291029
*
10301030
* @return void
10311031
* @link https://cms.paypal.com/us/cgi-bin/?&cmd=_render-content&content_ID=developer/e_howto_api_nvp_r_SetCustomerBillingAgreement
@@ -1425,15 +1425,15 @@ protected function _deformatNVP($nvpstr)
14251425
$nvpstr = strpos($nvpstr, "\r\n\r\n") !== false ? substr($nvpstr, strpos($nvpstr, "\r\n\r\n") + 4) : $nvpstr;
14261426

14271427
while (strlen($nvpstr)) {
1428-
//postion of Key
1428+
//position of Key
14291429
$keypos = strpos($nvpstr, '=');
14301430
//position of value
14311431
$valuepos = strpos($nvpstr, '&') ? strpos($nvpstr, '&') : strlen($nvpstr);
14321432

14331433
/*getting the Key and Value values and storing in a Associative Array*/
14341434
$keyval = substr($nvpstr, $intial, $keypos);
14351435
$valval = substr($nvpstr, $keypos + 1, $valuepos - $keypos - 1);
1436-
//decoding the respose
1436+
//decoding the response
14371437
$nvpArray[urldecode($keyval)] = urldecode($valval);
14381438
$nvpstr = substr($nvpstr, $valuepos + 1, strlen($nvpstr));
14391439
}

app/design/frontend/Magento/blank/Magento_ProductVideo/web/css/source/_module.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@
9797

9898
// @TODO UI: check possibility to use .media-width() mixin
9999
@media only screen
100-
and (min-device-width: 320px)
101-
and (max-device-width: 780px)
100+
and (min-device-width: @screen__xxs)
101+
and (max-device-width: @screen__m)
102102
and (orientation: landscape) {
103103
.product-video {
104104
height: 100%;

0 commit comments

Comments
 (0)