Skip to content

Commit 616d8ec

Browse files
author
Desislava Mihaylova
authored
docs: update latest content (#34)
* docs: review latest content * docs: update for consistency
1 parent 0f3f4f4 commit 616d8ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/num-formatting/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Standard number formatting can be specified by passing an options object or a st
3333

3434
* **The `"c"` specifier**—Formats the number as a currency based on the locale. The latest currency symbol of the specified locale is used for the formatting. To specify precision, add a number after `"c"`. By default, the number is formatted and rounded to two decimal digits, or to the number of digits in the `currencyData` fractions data of the CLDR if the currency is available.
3535

36-
> The locale numbers `currencies` data and the supplemental `currencyData` must be loaded for the currency formatting to work.
36+
> In order for the currency formatting to work, load the locale numbers `currencies` data and the supplemental `currencyData`.
3737
3838
import { formatNumber } from '@telerik/kendo-intl';
3939

@@ -43,9 +43,9 @@ Standard number formatting can be specified by passing an options object or a st
4343

4444
formatNumber(1234.5678, "c5", "bg"); // 1 234,56780 лв
4545

46-
* **The `"a"` specifier**—Same as `"c"` but uses the currency accounting format.
46+
* **The `"a"` specifier**—The same as the `"c"` specifier except that the `"a"` specifier uses the currency accounting format.
4747

48-
> The locale numbers `currencies` data and the supplemental `currencyData` must be loaded for the currency formatting to work.
48+
> In order for the currency formatting to work, load the locale numbers `currencies` data and the supplemental `currencyData`.
4949
5050
import { formatNumber } from '@telerik/kendo-intl';
5151

0 commit comments

Comments
 (0)