From 9fe8cf556ea9b7521f27a5eb19f6c012cbe20843 Mon Sep 17 00:00:00 2001 From: Mason Mackaman Date: Fri, 26 Dec 2025 13:49:00 -0500 Subject: [PATCH] Fix incorrect syntax in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1878d12..5f1669d 100644 --- a/README.md +++ b/README.md @@ -203,7 +203,7 @@ minimumP = foldr1 min Again, the compiler infers the correct type: ```purescript -minimumP :: forall a. (Partial, Ord a) => List a -> a +minimumP :: forall a. Partial => Ord a => List a -> a ``` Notice that the `Partial` constraint is automatically propagated to the