From 6eebfebb77c4f5f3220bf7d5724e6a847340b29a Mon Sep 17 00:00:00 2001 From: Maxim Davydov Date: Tue, 19 Nov 2019 11:41:55 +0300 Subject: [PATCH] #3141 Fixed docs --- core/src/main/scala/cats/Reducible.scala | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/src/main/scala/cats/Reducible.scala b/core/src/main/scala/cats/Reducible.scala index bcfb81657f..b04f581c99 100644 --- a/core/src/main/scala/cats/Reducible.scala +++ b/core/src/main/scala/cats/Reducible.scala @@ -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))