Skip to content

Commit

Permalink
typelevel#3141 Fixed docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Twizty committed Nov 19, 2019
1 parent 82c16e1 commit 6eebfeb
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions core/src/main/scala/cats/Reducible.scala
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,6 @@ import simulacrum.{noop, typeclass}
/**
* Apply `f` to each `a` of `fa` and combine the result into Apply[G] using the
* given `Semigroup[B]`.
*
* `noop` usage description [[https://github.com/typelevel/simulacrum/issues/162 here]]
*/
def reduceMapA[G[_], A, B](fa: F[A])(f: A => G[B])(implicit G: Apply[G], B: Semigroup[B]): G[B] =
reduceLeftTo(fa)(f)((gb, a) => G.map2(gb, f(a))(B.combine))
Expand Down

0 comments on commit 6eebfeb

Please sign in to comment.