Skip to content

Commit 0b11a56

Browse files
author
dmihaylo
committed
docs: add final updates
1 parent 844ea2c commit 0b11a56

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

docs/errors.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ The following table provides the full list of controlled errors that might possi
1313
| TYPE | MESSAGE
1414
|:--- |:---
1515
|`NoLocaleError` | Missing locale information for {locale}.
16-
|`NoCurrencyError` | <p>Cannot determine the currency information.</p> <p>Load the currency data of the locale.</p>
17-
|`NoSupplementalCurrencyError` | <p>Cannot determine the currency.</p> <p>Load the supplemental `currencyData`.</p>
16+
|`NoCurrencyError` | Cannot determine the currency information. Load the currency data of the locale.
17+
|`NoSupplementalCurrencyError` | Cannot determine the currency. Load the supplemental `currencyData`.
1818
|`NoCurrencyRegionError` | Missing currency information for the region ${territory}.
19-
|`NoCurrencyDisplay` | <p>Cannot determine the display information for the currency.</p> <p>Load the currency data of the locale. The default culture does not include all currency data.</p>
20-
|`NoGMTInfoError` | <p>Cannot determine the GMT format of the locale.</p> <p>Load the `timeZoneNames` data of the locale.</p>
21-
|`NoWeekDataError` | <p>Cannot determine the first week day of the locale.</p> <p>Load the supplemental `weekData`.</p>
22-
|`NoFirstDayError` | <p>Cannot determine the first week day of the locale.</p> <p>The default culture data includes only the en-US first day information. Load the supplemental `weekData`.</p>
19+
|`NoCurrencyDisplay` | Cannot determine the display information for the currency. Load the currency data of the locale. The default culture does not include all currency data.
20+
|`NoGMTInfoError` | Cannot determine the GMT format of the locale. Load the `timeZoneNames` data of the locale.
21+
|`NoWeekDataError` | Cannot determine the first week day of the locale. Load the supplemental `weekData`.
22+
|`NoFirstDayError` | Cannot determine the first week day of the locale. The default culture data includes only the en-US first day information. Load the supplemental `weekData`.
2323

2424
## Suggested Links
2525

docs/num-formatting/index.md

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

3232
formatNumber(1234.5678, "n5"); // 1,234.56780
3333

34-
* **The `"c"` specifier**&mdash;Formats the number as a currency based on the locale. The specified locale latest currency symbol is used for the formatting. Precision is specified by adding a number after `"c"`. By default, the number is formatted and rounded to two decimal digits, or the number of digits in the CLDR `currencyData` fractions data if the currency is available.
34+
* **The `"c"` specifier**&mdash;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

3636
> The locale numbers `currencies` data and the supplemental `currencyData` must be loaded for the currency formatting to work.
3737
@@ -43,7 +43,7 @@ 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 `"p"` specifier**&mdash;Formats the number as a percentage based on the locale. The passed number is multiplied by 100. Precision is specified by adding a number after `"p"`. By default, the number is formatted and rounded to zero decimal digits.
46+
* **The `"p"` specifier**&mdash;Formats the number as a percentage based on the locale. The passed number is multiplied by 100. To specify precision, add a number after `"p"`. By default, the number is formatted and rounded to zero decimal digits.
4747

4848
import { formatNumber } from '@telerik/kendo-intl';
4949

@@ -59,7 +59,7 @@ Standard number formatting can be specified by passing an options object or a st
5959

6060
formatNumber(0.45678, "e0"); // 5e-1
6161

62-
Apart from setting a string, the standard formats can also be specified by passing an object with the style option.
62+
Apart from setting a string, you can also specify the standard formats by passing an object with the style option.
6363

6464
import { formatNumber } from '@telerik/kendo-intl';
6565

@@ -78,7 +78,7 @@ Standard number formatting can be specified by passing an options object or a st
7878
style: "percent"
7979
}, "de"); // 123.457 %
8080

81-
For full list of available options check the [`formatNumber` API]({% slug numbersapi_internalization %}#the-formatnumber-method).
81+
For the full list of available options, refer to the API documentation on the [`formatNumber`]({% slug numbersapi_internalization %}#the-formatnumber-method) method.
8282

8383
### Custom
8484

0 commit comments

Comments
 (0)