Skip to content

Commit a0e1dd1

Browse files
committed
Update middleware docs for 0.9.0
1 parent 1b368dc commit a0e1dd1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/core-api/middleware.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ middleware.
2323

2424
Middleware are composed using ``ibind``, the indexed monadic version of
2525
``bind``. The simplest way of composing middleware is by chaining them
26-
with ``:*>``, from ``Control.IxMonad``. See
27-
`haskell-indexed-monad <https://pursuit.haskell.org/packages/haskell-indexed-monad/0.1.1>`__
26+
with ``:*>``, from ``Control.Monad.Indexed``. See
27+
`purescript-indexed-monad <https://pursuit.purescript.org/packages/purescript-indexed-monad/1.0.0>`__
2828
for more information.
2929

3030
.. code-block:: haskell
@@ -34,7 +34,7 @@ for more information.
3434
:*> respond "We're composing middleware!"
3535
3636
If you want to feed the return value of one middleware into another, use
37-
``:>>=``, the infix operator alias for ``mbind``.
37+
``:>>=``, the infix operator alias for ``ibind``.
3838

3939
.. code-block:: haskell
4040

0 commit comments

Comments
 (0)