We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aff606 commit 341e903Copy full SHA for 341e903
CHANGELOG.md
@@ -10,6 +10,7 @@ New features:
10
- Add `sans` and `both` (#97 by @xgrommx)
11
12
Bugfixes:
13
+- Fix broken `reindex` for v0.15 due to [Purescript PR #4033](https://github.com/purescript/purescript/pull/4033)
14
15
Other improvements:
16
- Added `purs-tidy` formatter (#138 by @thomashoneyman)
src/Data/Lens/Indexed.purs
@@ -37,7 +37,7 @@ reindexed
37
-> (Indexed p i a b -> r)
38
-> Indexed p j a b
39
-> r
40
-reindexed ij = (_ <<< _Newtype %~ lcmap (first ij))
+reindexed ij = (_ <<< (_Newtype %~ lcmap (first ij)))
41
42
-- | Converts a `lens`-like indexed traversal to an `IndexedTraversal`.
43
iwander
0 commit comments