chore: fix typo

This commit is contained in:
Leonardo de Moura 2020-08-18 18:16:36 -07:00
parent b44ab93c58
commit 3478579dce

View file

@ -29,7 +29,7 @@ inductive Exception
| kernel (ex : KernelException) (opts : Options)
| error (ref : Syntax) (msg : MessageData)
abbrev ECoreM (ε : Type) := ReaderT Context $ StateT State $ EIO ε
abbrev ECoreM (ε : Type) := ReaderT Context $ StateRefT State $ EIO ε
abbrev CoreM := ECoreM Exception