Skip to content

Commit 90c817f

Browse files
authored
Fix incorrect syntax in README (#26)
1 parent 0fa0646 commit 90c817f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ minimumP = foldr1 min
203203
Again, the compiler infers the correct type:
204204

205205
```purescript
206-
minimumP :: forall a. (Partial, Ord a) => List a -> a
206+
minimumP :: forall a. Partial => Ord a => List a -> a
207207
```
208208

209209
Notice that the `Partial` constraint is automatically propagated to the

0 commit comments

Comments
 (0)