Skip to content

Commit

Permalink
Generate README
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-murphy committed Sep 9, 2023
1 parent 87b968f commit 19aa712
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@

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

> **Warning**
> 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).
## Installation

```
Expand Down Expand Up @@ -147,7 +144,7 @@ constructors.
if isWordLike then
Just segment
else Nothing
Console.logShow words -- ["Hey","How","are","ya","Jim"]
Console.logShow words -- [ "Hey", "How", "are", "ya", "Jim" ]
```

### Type safety and overloaded API
Expand Down Expand Up @@ -193,3 +190,6 @@ combinations.

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

> **Note**
> 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).
2 changes: 1 addition & 1 deletion example/Example.purs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ main = do
if isWordLike then
Just segment
else Nothing
Console.logShow words -- ["Hey","How","are","ya","Jim"]
Console.logShow words -- [ "Hey", "How", "are", "ya", "Jim" ]
--
-- ### Type safety and overloaded API
--
Expand Down
2 changes: 1 addition & 1 deletion example/README.template.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

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

> **Warning**
> **Note**
> 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).
## Installation
Expand Down

0 comments on commit 19aa712

Please sign in to comment.