Skip to content

Commit

Permalink
Remove unused type parameter in Choice typeclass doc
Browse files Browse the repository at this point in the history
  • Loading branch information
b-vennes committed Jan 20, 2022
1 parent 490e3cf commit 3dcb22c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/mdoc/typeclasses/arrowchoice.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This is exactly typeclass `Choice` provided, if we make `=>` more generic such a

```scala
trait Choice[F[_, _]] {
def choice[A,B,C,D](fac: F[A, C], fbc: F[B, C]): F[Either[A, B], C]
def choice[A, B, C](fac: F[A, C], fbc: F[B, C]): F[Either[A, B], C]
}
```

Expand Down

0 comments on commit 3dcb22c

Please sign in to comment.