Skip to content

Commit b0cd9b7

Browse files
authored
typo-error-fixed-trailing@63
trailig was used rather than trailing in line number 63
1 parent 6299405 commit b0cd9b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Catalog/view/base/web/js/price-utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ define([
6060
pattern = pattern.indexOf('{sign}') < 0 ? s + pattern : pattern.replace('{sign}', s);
6161

6262
// we're avoiding the usage of to fixed, and using round instead with the e representation to address
63-
// numbers like 1.005 = 1.01. Using ToFixed to only provide trailig zeroes in case we have a whole number
63+
// numbers like 1.005 = 1.01. Using ToFixed to only provide trailing zeroes in case we have a whole number
6464
i = parseInt(
6565
amount = Number(Math.round(Math.abs(+amount || 0) + 'e+' + precision) + ('e-' + precision)),
6666
10

0 commit comments

Comments
 (0)