Skip to content

Commit

Permalink
Small README fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-murphy committed Aug 30, 2023
1 parent bf1ff07 commit 7c5409c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,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 @@ -167,7 +167,7 @@ overloaded to accept these values as well.
formattedSeconds = NumberFormat.format secondsNumberFormat 123456.789
Console.logShow formattedSeconds -- "123.5K sec"
```
See the `ConvertOptions` type class instances in each of the service
See the `ConvertOption` type class instances in each of the service
constructor modules to see what options are valid.


Expand Down
4 changes: 2 additions & 2 deletions 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 Expand Up @@ -137,5 +137,5 @@ main = do
let
formattedSeconds = NumberFormat.format secondsNumberFormat 123456.789
Console.logShow formattedSeconds -- "123.5K sec"
-- See the `ConvertOptions` type class instances in each of the service
-- See the `ConvertOption` type class instances in each of the service
-- constructor modules to see what options are valid.

0 comments on commit 7c5409c

Please sign in to comment.