8000 Final fixes · symfony/symfony-docs@4e4e3e2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4e4e3e2

Browse files
committed
Final fixes
1 parent 91cbf07 commit 4e4e3e2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

components/intl.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ as some of their information (symbol, fraction digits, etc.)::
262262
$symbol = Currencies::getSymbol('INR');
263263
// => '₹'
264264

265-
The fraction digits methods return the number of digits to display when
265+
The fraction digits methods return the number of decimal digits to display when
266266
formatting numbers with this currency. Depending on the currency, this value
267267
can change if the number is used in cash transactions or in other scenarios
268268
(e.g. accounting)::
@@ -279,11 +279,11 @@ can change if the number is used in cash transactions or in other scenarios
279279

280280
The ``getCashFractionDigits()`` method was introduced in Symfony 5.3.
281281

282-
Depending on the currency, numbers must be formatted to the nearest increment
283-
of some value (e.g. 5 cents). This increment might be different if numbers are
284-
formatted for cash transactions or other scenarios (e.g. accounting)::
282+
Some currencies require to round numbers to the nearest increment of some value
283+
(e.g. 5 cents). This increment might be different if numbers are formatted for
284+
cash transactions or other scenarios (e.g. accounting)::
285285

286-
// Indian ruppee defines the same value for both
286+
// Indian rupee defines the same value for both
287287
$roundingIncrement = Currencies::getRoundingIncrement('INR'); // returns: 0
288288
$cashRoundingIncrement = Currencies::getCashRoundingIncrement('INR'); // returns: 0
289289

0 commit comments

Comments
 (0)
0