fix(frontends/lean/parser.cpp): fix typo

This commit is contained in:
Soonho Kong 2014-07-31 10:15:45 -07:00
parent 8834563a7f
commit 82afcfac9c

View file

@ -1050,7 +1050,7 @@ void parser::parse_imports() {
} else if (auto it = find_file(f, ".olean")) {
olean_files.push_back(f);
} else {
throw parser_error(sstream() << "invalid import, unknow module '" << f << "'", pos());
throw parser_error(sstream() << "invalid import, unknown module '" << f << "'", pos());
}
next();
}