Skip to content

Commit 19aa712

Browse files
committed
Generate README
1 parent 87b968f commit 19aa712

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88

99
Type definitions and low-level bindings for the [ECMA 402 specification for the `Intl` object](https://tc39.es/ecma402/#intl-object).
1010

11-
> **Warning**
12-
> Implementations of the specification vary across platforms. For example `Intl.supportedValuesOf` will return different values when run in Node compared to Chrome or Firefox, etc. Some areas of the API may only have partial support—check the [MDN browser compatibility tables](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#browser_compatibility).
13-
1411
## Installation
1512

1613
```
@@ -147,7 +144,7 @@ constructors.
147144
if isWordLike then
148145
Just segment
149146
else Nothing
150-
Console.logShow words -- ["Hey","How","are","ya","Jim"]
147+
Console.logShow words -- [ "Hey", "How", "are", "ya", "Jim" ]
151148
```
152149

153150
### Type safety and overloaded API
@@ -193,3 +190,6 @@ combinations.
193190

194191
More examples are in the `Test.Main` module.
195192

193+
> **Note**
194+
> Implementations of the specification vary across platforms. For example `Intl.supportedValuesOf` will return different values when run in Node compared to Chrome or Firefox, etc. Some areas of the API may only have partial support—check the [MDN browser compatibility tables](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#browser_compatibility).
195+

example/Example.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ main = do
105105
if isWordLike then
106106
Just segment
107107
else Nothing
108-
Console.logShow words -- ["Hey","How","are","ya","Jim"]
108+
Console.logShow words -- [ "Hey", "How", "are", "ya", "Jim" ]
109109
--
110110
-- ### Type safety and overloaded API
111111
--

example/README.template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
Type definitions and low-level bindings for the [ECMA 402 specification for the `Intl` object](https://tc39.es/ecma402/#intl-object).
88

9-
> **Warning**
9+
> **Note**
1010
> Implementations of the specification vary across platforms. For example `Intl.supportedValuesOf` will return different values when run in Node compared to Chrome or Firefox, etc. Some areas of the API may only have partial support—check the [MDN browser compatibility tables](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#browser_compatibility).
1111
1212
## Installation

0 commit comments

Comments
 (0)