Skip to content

Commit

Permalink
Merge pull request #778 from ceedubs/rm-type-param-foldable
Browse files Browse the repository at this point in the history
Remove unused type param on sequence_
  • Loading branch information
adelbertc committed Jan 5, 2016
2 parents cb2a945 + 775d630 commit caf977f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/scala/cats/syntax/foldable.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ trait FoldableSyntax extends Foldable.ToFoldableOps with FoldableSyntax1 {
}

final class NestedFoldableOps[F[_], G[_], A](fga: F[G[A]])(implicit F: Foldable[F]) {
def sequence_[B](implicit G: Applicative[G]): G[Unit] = F.sequence_(fga)
def sequence_(implicit G: Applicative[G]): G[Unit] = F.sequence_(fga)
def foldK(implicit G: MonoidK[G]): G[A] = F.foldK(fga)
}

0 comments on commit caf977f

Please sign in to comment.