Skip to content

Commit 4e61e11

Browse files
update
1 parent 616e783 commit 4e61e11

3 files changed

Lines changed: 19 additions & 19 deletions

File tree

api-doc/interfaces/FeatureAll.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ Available in Chrome, Edge, Firefox, Internet Explorer 11 on Windows 10, Safari,
432432

433433
> **LOCALE\_NUMERALS\_IE11\_WIN7**: [`ElementaryFeature`](ElementaryFeature.md)
434434
435-
Localized number formatting exclusive to Interner Explorer 11 in Windows 7.
435+
Localized number formatting exclusive to Internet Explorer 11 in Windows 7.
436436

437437
#### Remarks
438438

@@ -444,7 +444,7 @@ Available in Internet Explorer 11 on Windows 7.
444444

445445
> **LOCALE\_NUMERALS\_IE11\_WIN7\_8**: [`ElementaryFeature`](ElementaryFeature.md)
446446
447-
Localized number formatting exclusive to Interner Explorer 11 in Windows 7 and 8.
447+
Localized number formatting exclusive to Internet Explorer 11 in Windows 7 and 8.
448448

449449
#### Remarks
450450

api-doc/interfaces/FeatureConstructor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ Available in Chrome, Edge, Firefox, Internet Explorer 11 on Windows 10, Safari,
694694

695695
> **LOCALE\_NUMERALS\_IE11\_WIN7**: [`ElementaryFeature`](ElementaryFeature.md)
696696
697-
Localized number formatting exclusive to Interner Explorer 11 in Windows 7.
697+
Localized number formatting exclusive to Internet Explorer 11 in Windows 7.
698698

699699
#### Remarks
700700

@@ -710,7 +710,7 @@ Available in Internet Explorer 11 on Windows 7.
710710

711711
> **LOCALE\_NUMERALS\_IE11\_WIN7\_8**: [`ElementaryFeature`](ElementaryFeature.md)
712712
713-
Localized number formatting exclusive to Interner Explorer 11 in Windows 7 and 8.
713+
Localized number formatting exclusive to Internet Explorer 11 in Windows 7 and 8.
714714

715715
#### Remarks
716716

src/lib/features.js

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -323,37 +323,37 @@ var featureInfos =
323323
LOCALE_NUMERALS_IE11_WIN7:
324324
{
325325
description:
326-
'Localized number formatting exclusive to Interner Explorer 11 in Windows 7.',
326+
'Localized number formatting exclusive to Internet Explorer 11 in Windows 7.',
327327
check:
328328
function ()
329329
{
330330
var available =
331-
checkLocaleNumeral('lv', Infinity, /^bezgalība/) &&
332-
checkLocaleNumeral('ru', Infinity, /^бесконечность/);
331+
checkLocaleNumeral('lv', Infinity, /^......ī/) &&
332+
checkLocaleNumeral('ru', Infinity, /^беск.н.ч.о.ть/);
333333
return available;
334334
},
335335
excludes: ['RUSSIAN_INFINITY'],
336336
},
337337
LOCALE_NUMERALS_IE11_WIN7_8:
338338
{
339339
description:
340-
'Localized number formatting exclusive to Interner Explorer 11 in Windows 7 and 8.',
340+
'Localized number formatting exclusive to Internet Explorer 11 in Windows 7 and 8.',
341341
check:
342342
function ()
343343
{
344344
var available =
345345
checkLocaleNumeral('ar', NaN, /^ليس.برقم/) &&
346-
checkLocaleNumeral('ar', Infinity, /^\+لا.نهاية/) &&
347-
checkLocaleNumeral('cs', NaN, /^Není.číslo/) &&
348-
checkLocaleNumeral('el', Infinity, /^Άπειρο/) &&
349-
checkLocaleNumeral('el', NaN, /^μη.αριθμός/) &&
350-
checkLocaleNumeral('he', NaN, /^לא.מספר/) &&
351-
checkLocaleNumeral('ja', Infinity, /^\+/) &&
352-
checkLocaleNumeral('ja', NaN, /^NaN.\(\)/) &&
353-
checkLocaleNumeral('lt', Infinity, /^begalybė/) &&
354-
checkLocaleNumeral('pl', Infinity, /^\+nieskończoność/) &&
346+
checkLocaleNumeral('ar', Infinity, /^..ا.نه..ة/) &&
347+
checkLocaleNumeral('cs', NaN, /^.....č/) &&
348+
checkLocaleNumeral('el', Infinity, /^Άπε..ο/) &&
349+
checkLocaleNumeral('el', NaN, /^μη.αριθ.ός/) &&
350+
checkLocaleNumeral('he', NaN, /^ל/) &&
351+
checkLocaleNumeral('ja', Infinity, /^./) &&
352+
checkLocaleNumeral('ja', NaN, /^...../) &&
353+
checkLocaleNumeral('lt', Infinity, /^.......ė/) &&
354+
checkLocaleNumeral('pl', Infinity, /^.............ś/) &&
355355
checkLocaleNumeral('zh', Infinity, /^/) &&
356-
checkLocaleNumeral('zh-cn', NaN, /^/);
356+
checkLocaleNumeral('zh-cn', NaN, /^../);
357357
return available;
358358
},
359359
},
@@ -701,7 +701,7 @@ var featureInfos =
701701
inherits: 'IE_11',
702702
versions: ['11'],
703703
compatibilityTag: 'on Windows 7',
704-
compatibilityShortTag: 'W8',
704+
compatibilityShortTag: 'W7',
705705
includes:
706706
{
707707
LOCALE_NUMERALS_IE11_WIN7: true,

0 commit comments

Comments
 (0)