Skip to content

Commit 7c5409c

Browse files
committed
Small README fixes
1 parent bf1ff07 commit 7c5409c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ constructors.
132132
if isWordLike then
133133
Just segment
134134
else Nothing
135-
Console.logShow words -- ["Hey", "How", "are", "ya", "Jim"]
135+
Console.logShow words -- ["Hey","How","are","ya","Jim"]
136136
```
137137

138138
### Type safety and overloaded API
@@ -167,7 +167,7 @@ overloaded to accept these values as well.
167167
formattedSeconds = NumberFormat.format secondsNumberFormat 123456.789
168168
Console.logShow formattedSeconds -- "123.5K sec"
169169
```
170-
See the `ConvertOptions` type class instances in each of the service
170+
See the `ConvertOption` type class instances in each of the service
171171
constructor modules to see what options are valid.
172172

173173

example/Example.purs

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

0 commit comments

Comments
 (0)