1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

Fix typo on checker

This commit is contained in:
Don Alfons Nisnoni 2020-05-06 18:57:40 +08:00 committed by GitHub
parent f80876497e
commit e87289f24d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@ pub fn (mut c Checker) check_files(ast_files []ast.File) {
return
}
if !has_main_mod_file {
c.error('projet must include a `main` module or be a shared library (compile with `v -shared`)',
c.error('project must include a `main` module or be a shared library (compile with `v -shared`)',
token.Position{})
} else if !has_main_fn {
c.error('function `main` must be declared in the main module', token.Position{})

View File

@ -1,3 +1,3 @@
vlib/v/checker/tests/no_main_mod.v:1:1: error: projet must include a `main` module or be a shared library (compile with `v -shared`)
vlib/v/checker/tests/no_main_mod.v:1:1: error: project must include a `main` module or be a shared library (compile with `v -shared`)
1 | module a
| ^