fix(frontends/lean/parser.cpp): fix typo
This commit is contained in:
parent
8834563a7f
commit
82afcfac9c
1 changed files with 1 additions and 1 deletions
|
@ -1050,7 +1050,7 @@ void parser::parse_imports() {
|
||||||
} else if (auto it = find_file(f, ".olean")) {
|
} else if (auto it = find_file(f, ".olean")) {
|
||||||
olean_files.push_back(f);
|
olean_files.push_back(f);
|
||||||
} else {
|
} else {
|
||||||
throw parser_error(sstream() << "invalid import, unknow module '" << f << "'", pos());
|
throw parser_error(sstream() << "invalid import, unknown module '" << f << "'", pos());
|
||||||
}
|
}
|
||||||
next();
|
next();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue