Skip to content

Commit 9671baa

Browse files
committed
Fixing javadoc
1 parent 559bfb3 commit 9671baa

File tree

1 file changed

+6
-0
lines changed
  • src/main/java/com/jnape/palatable/lambda/monad/transformer/builtin

1 file changed

+6
-0
lines changed

src/main/java/com/jnape/palatable/lambda/monad/transformer/builtin/ReaderT.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,12 @@ public <MA extends MonadRec<A, M>> MA runReaderT(R r) {
4949

5050
/**
5151
* Map the current {@link Monad monadic} embedding to a new one in a potentially different {@link Monad}.
52+
*
53+
* @param fn the function
54+
* @param <MA> the currently embedded {@link Monad}
55+
* @param <N> the new {@link Monad} witness
56+
* @param <B> the new carrier type
57+
* @return the mapped {@link ReaderT}
5258
*/
5359
public <MA extends MonadRec<A, M>, N extends MonadRec<?, N>, B> ReaderT<R, N, B> mapReaderT(
5460
Fn1<? super MA, ? extends MonadRec<B, N>> fn) {

0 commit comments

Comments
 (0)