Skip to content

Commit 2fdb23b

Browse files
Fix Foldable1 instance; update CI to v0.14.0-rc5 (#43)
* Update CI to v0.14.0-rc5 * Remove 'fold1' member in 'Foldable1' instance
1 parent 5e6aa22 commit 2fdb23b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
- uses: purescript-contrib/setup-purescript@main
1616
with:
17-
purescript: "0.14.0-rc3"
17+
purescript: "0.14.0-rc5"
1818

1919
- uses: actions/setup-node@v1
2020
with:

src/Data/Tuple.purs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ instance foldableTuple :: Foldable (Tuple a) where
150150

151151
instance foldable1Tuple :: Foldable1 (Tuple a) where
152152
foldMap1 f (Tuple _ x) = f x
153-
fold1 (Tuple _ x) = x
154153
foldr1 _ (Tuple _ x) = x
155154
foldl1 _ (Tuple _ x) = x
156155

0 commit comments

Comments
 (0)