Skip to content

Commit 337f865

Browse files
committed
fix EN => CN translation(126)
1 parent 7fbb60f commit 337f865

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

zh-CN/README-zh_CN.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4032,15 +4032,15 @@ myFunc(1, 2, 3);
40324032
40334033
```javascript
40344034
function getFine(speed, amount) {
4035-
const formattedSpeed = new Intl.NumberFormat({
4035+
const formattedSpeed = new Intl.NumberFormat(
40364036
'en-US',
40374037
{ style: 'unit', unit: 'mile-per-hour' }
4038-
}).format(speed)
4038+
).format(speed)
40394039
4040-
const formattedAmount = new Intl.NumberFormat({
4040+
const formattedAmount = new Intl.NumberFormat(
40414041
'en-US',
40424042
{ style: 'currency', currency: 'USD' }
4043-
}).format(amount)
4043+
).format(amount)
40444044
40454045
return `The driver drove ${formattedSpeed} and has to pay ${formattedAmount}`
40464046
}

0 commit comments

Comments
 (0)