Skip to content

Commit

Permalink
Merge pull request #4113 from b-vennes/main
Browse files Browse the repository at this point in the history
  • Loading branch information
johnynek authored Jan 20, 2022
2 parents 490e3cf + 3dcb22c commit 67c5d40
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 67c5d40

Please sign in to comment.