Skip to content

Commit

Permalink
fix doc style
Browse files Browse the repository at this point in the history
  • Loading branch information
wedens committed Apr 24, 2017
1 parent 946f171 commit 35dc00c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions core/src/main/scala/cats/MonadTrans.scala
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
package cats

/**
* A type class which abstracts over the ability to lift an M[A] into a
* MonadTransformer
*/
* A type class which abstracts over the ability to lift an M[A] into a
* MonadTransformer
*/
trait MonadTrans[MT[_[_], _]] {

/**
* Lift a value of type M[A] into a monad transformer MT[M, A]
*/
* Lift a value of type M[A] into a monad transformer MT[M, A]
*/
def liftT[M[_]: Monad, A](ma: M[A]): MT[M, A]
}

Expand Down

0 comments on commit 35dc00c

Please sign in to comment.