006_hindley_milner.md: typo fix (ExceptT)

This commit is contained in:
Dan Aloni 2016-03-27 14:54:10 +03:00
parent 824a0378a7
commit 56756e41f6

View File

@ -238,7 +238,7 @@ Inference Monad
---------------
All our logic for type inference will live inside of the ``Infer`` monad. It
is a monad transformer stack of ``ExcpetT`` + ``State``, allowing various error
is a monad transformer stack of ``ExceptT`` + ``State``, allowing various error
reporting and statefully holding the fresh name supply.
```haskell