Skip to content

Commit 69679dd

Browse files
committed
version 2.8.4
1 parent 98eca0d commit 69679dd

File tree

2 files changed

+29
-4
lines changed

2 files changed

+29
-4
lines changed

docs/modules/IOEither.ts.md

+28-4
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ Added in v2.0.0
5959
- [getOrElseW](#getorelsew)
6060
- [instances](#instances)
6161
- [Alt](#alt-1)
62-
- [Applicative](#applicative)
62+
- [ApplicativePar](#applicativepar)
63+
- [ApplicativeSeq](#applicativeseq)
6364
- [Bifunctor](#bifunctor-1)
6465
- [Functor](#functor-1)
6566
- [Monad](#monad-1)
@@ -75,6 +76,7 @@ Added in v2.0.0
7576
- [getIOValidation](#getiovalidation)
7677
- [getSemigroup](#getsemigroup)
7778
- [ioEither](#ioeither)
79+
- [~~Applicative~~](#applicative)
7880
- [model](#model)
7981
- [IOEither (interface)](#ioeither-interface)
8082
- [utils](#utils)
@@ -487,15 +489,25 @@ export declare const Alt: Alt2<'IOEither'>
487489

488490
Added in v2.7.0
489491

490-
## Applicative
492+
## ApplicativePar
491493

492494
**Signature**
493495

494496
```ts
495-
export declare const Applicative: Applicative2<'IOEither'>
497+
export declare const ApplicativePar: Applicative2<'IOEither'>
496498
```
497499

498-
Added in v2.7.0
500+
Added in v2.8.4
501+
502+
## ApplicativeSeq
503+
504+
**Signature**
505+
506+
```ts
507+
export declare const ApplicativeSeq: Applicative2<'IOEither'>
508+
```
509+
510+
Added in v2.8.4
499511

500512
## Bifunctor
501513

@@ -659,6 +671,18 @@ export declare const ioEither: Monad2<'IOEither'> &
659671

660672
Added in v2.0.0
661673

674+
## ~~Applicative~~
675+
676+
Use `ApplicativePar` instead
677+
678+
**Signature**
679+
680+
```ts
681+
export declare const Applicative: Applicative2<'IOEither'>
682+
```
683+
684+
Added in v2.7.0
685+
662686
# model
663687

664688
## IOEither (interface)

src/IOEither.ts

+1
Original file line numberDiff line numberDiff line change
@@ -537,6 +537,7 @@ export const ApplicativeSeq: Applicative2<URI> = {
537537
* Use `ApplicativePar` instead
538538
*
539539
* @since 2.7.0
540+
* @category instances
540541
* @deprecated
541542
*/
542543
export const Applicative: Applicative2<URI> = ApplicativePar

0 commit comments

Comments
 (0)