Skip to content

Commit fe305ac

Browse files
author
David Alger
committed
MAGETWO-37589 Email Templates Localization
- fixed mispellings of quote
1 parent 2233426 commit fe305ac

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

app/code/Magento/Checkout/Block/Onepage/Billing.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class Billing extends \Magento\Checkout\Block\Onepage\AbstractOnepage
1818
{
1919
/**
20-
* Sales Qoute Billing Address instance
20+
* Sales Quote Billing Address instance
2121
*
2222
* @var \Magento\Quote\Model\Quote\Address
2323
*/

app/code/Magento/Checkout/Block/Onepage/Shipping.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class Shipping extends \Magento\Checkout\Block\Onepage\AbstractOnepage
1818
{
1919
/**
20-
* Sales Qoute Shipping Address instance
20+
* Sales Quote Shipping Address instance
2121
*
2222
* @var \Magento\Quote\Model\Quote\Address
2323
*/

app/code/Magento/Dhl/Model/Carrier.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -946,7 +946,7 @@ protected function _getQuotesFromServer($request)
946946
}
947947

948948
/**
949-
* Build qoutes request XML object
949+
* Build quotes request XML object
950950
*
951951
* @return \SimpleXMLElement
952952
*/

lib/internal/Magento/Framework/Filter/Template/Tokenizer/Variable.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ public function getString()
7474
if ($this->isWhiteSpace()) {
7575
return $value;
7676
}
77-
$qouteStart = $this->isQuote();
77+
$quoteStart = $this->isQuote();
7878

79-
if ($qouteStart) {
79+
if ($quoteStart) {
8080
$breakSymbol = $this->char();
8181
} else {
8282
$breakSymbol = false;

0 commit comments

Comments
 (0)