From 19aa7128fd78c8c4ba4270165ebc8b48b97bef09 Mon Sep 17 00:00:00 2001 From: Peter Murphy <26548438+ptrfrncsmrph@users.noreply.github.com> Date: Sat, 9 Sep 2023 09:39:18 -0400 Subject: [PATCH] Generate README --- README.md | 8 ++++---- example/Example.purs | 2 +- example/README.template.md | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index dbd0512..70c407a 100644 --- a/README.md +++ b/README.md @@ -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 ``` @@ -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 @@ -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). + diff --git a/example/Example.purs b/example/Example.purs index 490d3ba..4588dec 100644 --- a/example/Example.purs +++ b/example/Example.purs @@ -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 -- diff --git a/example/README.template.md b/example/README.template.md index 6ad5c9c..02f3b09 100644 --- a/example/README.template.md +++ b/example/README.template.md @@ -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