fix(src/library/definitional/equations.cpp): fix typo in error message

This commit is contained in:
Rob Lewis 2015-08-15 22:21:54 -04:00 committed by Leonardo de Moura
parent 84a80b343a
commit 8e428f2d3f

View file

@ -935,7 +935,7 @@ class equation_compiler_fn {
expr t = subst.instantiate_all(g.get_meta()); expr t = subst.instantiate_all(g.get_meta());
return some_expr(t); return some_expr(t);
} else { } else {
throw_error(sstream() << "patter matching failed"); throw_error(sstream() << "pattern matching failed");
} }
} }