Skip to content

Commit

Permalink
Make the XorT.right a scaladoc link
Browse files Browse the repository at this point in the history
  • Loading branch information
Zach Abbott committed Jul 20, 2016
1 parent bbf98aa commit ff457d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/scala/cats/data/XorT.scala
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,9 @@ trait XorTFunctions {
final def pure[F[_], A, B](b: B)(implicit F: Applicative[F]): XorT[F, A, B] = right(F.pure(b))

/**
* Alias for XorT.right
* Alias for [[XorT.right]]
*/
final def liftT[F[_], A, B](fb: F[B])(implicit F: Functor[F]): XorT[F, A, B] = right(fb)
final def liftT[F[_], A, B](fb: F[B]): XorT[F, A, B] = right(fb)

/** Transforms an `Xor` into an `XorT`, lifted into the specified `Applicative`.
*
Expand Down

0 comments on commit ff457d9

Please sign in to comment.