@@ -87,13 +87,13 @@ prism :: forall f p s t a b. (Applicative f, Choice p) => (b -> t) -> (s -> Eith
8787#### ` only `
8888
8989``` purescript
90- only :: forall a. Eq a => a -> PrismP a Unit
90+ only :: forall a. Eq a => a -> Prism' a Unit
9191```
9292
9393#### ` nearly `
9494
9595``` purescript
96- nearly :: forall a. a -> (a -> Boolean) -> PrismP a Unit
96+ nearly :: forall a. a -> (a -> Boolean) -> Prism' a Unit
9797```
9898
9999#### ` matching `
@@ -143,7 +143,7 @@ setJust :: forall s t a b. ASetter s t a (Maybe b) -> b -> s -> t
143143#### ` set' `
144144
145145``` purescript
146- set' :: forall s a. ASetterP s a -> a -> s -> s
146+ set' :: forall s a. ASetter' s a -> a -> s -> s
147147```
148148
149149#### ` set `
@@ -161,7 +161,7 @@ over :: forall p s t a b. Profunctor p => Setting p s t a b -> p a b -> s -> t
161161#### ` or `
162162
163163``` purescript
164- or :: forall s t a. BooleanAlgebra a => ASetter s t a a -> a -> s -> t
164+ or :: forall s t a. HeytingAlgebra a => ASetter s t a a -> a -> s -> t
165165```
166166
167167#### ` mul `
@@ -203,7 +203,7 @@ argument :: forall p r a b. Profunctor p => Setter (p b r) (p a r) a b
203203#### ` and `
204204
205205``` purescript
206- and :: forall s t a. BooleanAlgebra a => ASetter s t a a -> a -> s -> t
206+ and :: forall s t a. HeytingAlgebra a => ASetter s t a a -> a -> s -> t
207207```
208208
209209#### ` add `
@@ -274,10 +274,10 @@ infixr 4 over as %~
274274
275275### Re-exported from Optic.Types:
276276
277- #### ` SettingP `
277+ #### ` Setting' `
278278
279279``` purescript
280- type SettingP p s a = Setting p s s a a
280+ type Setting' p s a = Setting p s s a a
281281```
282282
283283#### ` Setting `
@@ -286,10 +286,10 @@ type SettingP p s a = Setting p s s a a
286286type Setting p s t a b = p a (Identity b) -> s -> Identity t
287287```
288288
289- #### ` SetterP `
289+ #### ` Setter' `
290290
291291``` purescript
292- type SetterP s a = Setter s s a a
292+ type Setter' s a = Setter s s a a
293293```
294294
295295#### ` Setter `
@@ -298,10 +298,10 @@ type SetterP s a = Setter s s a a
298298type Setter s t a b = forall f. Settable f => (a -> f b) -> s -> f t
299299```
300300
301- #### ` PrismP `
301+ #### ` Prism' `
302302
303303``` purescript
304- type PrismP s a = Prism s s a a
304+ type Prism' s a = Prism s s a a
305305```
306306
307307#### ` Prism `
@@ -310,10 +310,10 @@ type PrismP s a = Prism s s a a
310310type Prism s t a b = forall f p. (Applicative f, Choice p) => p a (f b) -> p s (f t)
311311```
312312
313- #### ` OpticalP `
313+ #### ` Optical' `
314314
315315``` purescript
316- type OpticalP p q f s a = Optical p q f s s a a
316+ type Optical' p q f s a = Optical p q f s s a a
317317```
318318
319319#### ` Optical `
@@ -322,10 +322,10 @@ type OpticalP p q f s a = Optical p q f s s a a
322322type Optical p q f s t a b = p a (f b) -> q s (f t)
323323```
324324
325- #### ` LensP `
325+ #### ` Lens' `
326326
327327``` purescript
328- type LensP s a = Lens s s a a
328+ type Lens' s a = Lens s s a a
329329```
330330
331331#### ` Lens `
@@ -352,10 +352,10 @@ type Getter s a = forall f. (Contravariant f, Functor f) => (a -> f a) -> s -> f
352352type Accessing p m s a = p a (Const m a) -> s -> Const m s
353353```
354354
355- #### ` ASetterP `
355+ #### ` ASetter' `
356356
357357``` purescript
358- type ASetterP s a = ASetter s s a a
358+ type ASetter' s a = ASetter s s a a
359359```
360360
361361#### ` ASetter `
@@ -364,10 +364,10 @@ type ASetterP s a = ASetter s s a a
364364type ASetter s t a b = (a -> Identity b) -> s -> Identity t
365365```
366366
367- #### ` APrismP `
367+ #### ` APrism' `
368368
369369``` purescript
370- type APrismP s a = APrism s s a a
370+ type APrism' s a = APrism s s a a
371371```
372372
373373#### ` APrism `
0 commit comments