Skip to content

Commit 470b4dc

Browse files
Remove links to specific library versions in documentation
1 parent 764abec commit 470b4dc

File tree

1 file changed

+5
-5
lines changed
  • microlens-pro/src/Lens/Micro

1 file changed

+5
-5
lines changed

microlens-pro/src/Lens/Micro/Pro.hs

+5-5
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,9 @@ read . show = id
158158
159159
The isomorphisms defined in this module are true lens-compatible isos. Many of
160160
them share names with the lens-__incompatible__ definitions from
161-
[Lens.Micro](https://hackage.haskell.org/package/microlens-0.4.13.1/docs/Lens-Micro.html#g:5)
161+
[Lens.Micro](https://hackage.haskell.org/package/microlens/docs/Lens-Micro.html#g:5)
162162
and
163-
[Lens.Micro.Platform](https://hackage.haskell.org/package/microlens-platform-0.4.3.4/docs/Lens-Micro-Platform.html).
163+
[Lens.Micro.Platform](https://hackage.haskell.org/package/microlens-platform/docs/Lens-Micro-Platform.html).
164164
For convenience, we re-export Lens.Micro.Platform, but with non-lens-compatible
165165
isos hidden and replaced with lens-compatbile ones.
166166
@@ -626,12 +626,12 @@ Review. This usually means a 'Prism' or an 'Iso'.
626626
type AReview t b = Tagged b (Identity b) -> Tagged t (Identity t)
627627

628628
{- |
629-
[@Review@](https://hackage.haskell.org/package/lens-5.2.3/docs/Control-Lens-Type.html#t:Review),
629+
[@Review@](https://hackage.haskell.org/package/lens/docs/Control-Lens-Type.html#t:Review),
630630
from lens, is limited form of 'Prism' that can only be used for 're' operations.
631631
632632
Similarly to 'SimpleGetter' from microlens, microlens-pro does not define 'Review' and opts for
633633
a less general 'SimpleReview' in order to avoid a
634-
[distributive](https://hackage.haskell.org/package/distributive-0.6.2.1)
634+
[distributive](https://hackage.haskell.org/package/distributive)
635635
dependency.
636636
-}
637637

@@ -704,7 +704,7 @@ unto :: (b -> t) -> Review' t b
704704
705705
Pardon the actual type signature — microlens defines neither @Optic@ (used in
706706
lens'
707-
[@unto@](https://hackage.haskell.org/package/lens-5.2.3/docs/Control-Lens-Combinators.html#v:unto)) nor @Review'@. Here we simply expand the definition of @Optic@.
707+
[@unto@](https://hackage.haskell.org/package/lens/docs/Control-Lens-Combinators.html#v:unto)) nor @Review'@. Here we simply expand the definition of @Optic@.
708708
-}
709709
unto :: (Profunctor p, Bifunctor p, Functor f)
710710
=> (b -> t)

0 commit comments

Comments
 (0)