We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b888dec commit b173026Copy full SHA for b173026
core/src/main/scala/cats/Bifoldable.scala
@@ -27,7 +27,7 @@ import simulacrum.typeclass
27
}
28
29
def bifold[A, B](fab: F[A, B])(implicit A: Monoid[A], B: Monoid[B]): (A, B) = {
30
- import cats.instances.tuple._
+ import cats.instances.tuple._
31
bifoldMap(fab)((_, B.empty), (A.empty, _))
32
33
0 commit comments