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 15, 2019
1 parent 1ff4848 commit 07f8d38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/scala/cats/Foldable.scala
Original file line number Diff line number Diff line change
Expand Up @@ -289,8 +289,8 @@ import Foldable.sentinel
* {{{
* scala> import cats.implicits._
* scala> val F = Foldable[List]
* scala> F.foldA(List(Right(1) :: Right(2) :: Nil)
* res0: Right[Int] = Right(3)
* scala> F.foldA(List(Either.right[String, Int](1), Either.right[String, Int](2)))
* res0: Either[String, Int] = Right(3)
* }}}
*
* `noop` usage description [[https://github.com/typelevel/simulacrum/issues/162 here]]
Expand Down

0 comments on commit 07f8d38

Please sign in to comment.